Skip to content

Commit bce91ce

Browse files
author
Jordan Adler
committed
Update copyright notices to 2018; Re-add Py2.6 and Py3.3 support; Update credits
1 parent 76255c4 commit bce91ce

14 files changed

+24
-30
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ cache: pip
44

55
matrix:
66
include:
7+
- python: 2.6
8+
env: TOXENV=py26
79
- python: 2.7
810
env: TOXENV=py27
11+
- python: 3.3
12+
env: TOXENV=py33
913
- python: 3.4
1014
env: TOXENV=py34
1115
- python: 3.5

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2013-2016 Python Charmers Pty Ltd, Australia
1+
Copyright (c) 2013-2018 Python Charmers Pty Ltd, Australia
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ Licensing
266266

267267
:Author: Ed Schofield, Jordan M. Adler, et al
268268

269-
:Copyright: 2013-2016 Python Charmers Pty Ltd, Australia.
269+
:Copyright: 2013-2018 Python Charmers Pty Ltd, Australia.
270270

271271
:Sponsors: Python Charmers Pty Ltd, Australia, and Python Charmers Pte
272272
Ltd, Singapore. http://pythoncharmers.com

docs/compatible_idioms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Cheat Sheet: Writing Python 2-3 compatible code
44
===============================================
55

6-
- **Copyright (c):** 2013-2016 Python Charmers Pty Ltd, Australia.
6+
- **Copyright (c):** 2013-2018 Python Charmers Pty Ltd, Australia.
77
- **Author:** Ed Schofield.
88
- **Licence:** Creative Commons Attribution.
99

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# General information about the project.
5353
project = u'Python-Future'
54-
copyright = u'2013-2016, Python Charmers Pty Ltd, Australia'
54+
copyright = u'2013-2018, Python Charmers Pty Ltd, Australia'
5555

5656
# The version info for the project you're documenting, acts as replacement for
5757
# |version| and |release|, also used in various other places throughout the

docs/credits.rst

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Licence
88
The software is distributed under an MIT licence. The text is as follows
99
(from ``LICENSE.txt``)::
1010

11-
Copyright (c) 2013-2016 Python Charmers Pty Ltd, Australia
11+
Copyright (c) 2013-2018 Python Charmers Pty Ltd, Australia
1212

1313
Permission is hereby granted, free of charge, to any person obtaining a copy
1414
of this software and associated documentation files (the "Software"), to deal
@@ -39,20 +39,13 @@ Pinterest https://opensource.pinterest.com/
3939

4040
.. _authors:
4141

42+
Maintainer
43+
----------
44+
Python-Future is currently maintained by Jordan M. Adler <jordan.m.adler@gmail.com>.
45+
4246
Authors
4347
-------
44-
45-
Python-Future is written and maintained by Ed Schofield and Jordan M. Adler
46-
with the help of various contributors:
47-
48-
Development Leads
49-
~~~~~~~~~~~~~~~~~
50-
51-
- Ed Schofield <ed@pythoncharmers.com>
52-
- Jordan M. Adler <jordan.m.adler@gmail.com>
53-
54-
Patches
55-
~~~~~~~
48+
Python-Future is largely written by Ed Schofield <ed@pythoncharmers.com> with the help of various contributors:
5649

5750
- Grant Bakker
5851
- Jacob Beck

docs/notebooks/Writing Python 2-3 compatible code.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cell_type": "markdown",
1212
"metadata": {},
1313
"source": [
14-
"- **Copyright (c):** 2013-2016 Python Charmers Pty Ltd, Australia.\n",
14+
"- **Copyright (c):** 2013-2018 Python Charmers Pty Ltd, Australia.\n",
1515
"- **Author:** Ed Schofield.\n",
1616
"- **Licence:** Creative Commons Attribution.\n",
1717
"\n",

docs/whatsnew.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,6 @@ This is a major bug-fix release, including:
2323
As well as a number of corrections to a variety of documentation, and updates to
2424
test infrastructure.
2525

26-
In this release, we also drop official support for Py2.6 and Py3.3. They should
27-
still work, but support is no longer guaranteed, and breaking changes will be
28-
introduced in subsequent versions.
29-
30-
3126
What's new in version 0.16.0 (2016-10-27)
3227
==========================================
3328

futurize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
Licensing
1515
---------
16-
Copyright 2013-2016 Python Charmers Pty Ltd, Australia.
16+
Copyright 2013-2018 Python Charmers Pty Ltd, Australia.
1717
The software is distributed under an MIT licence. See LICENSE.txt.
1818
"""
1919

pasteurize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
1313
Licensing
1414
---------
15-
Copyright 2013-2016 Python Charmers Pty Ltd, Australia.
15+
Copyright 2013-2018 Python Charmers Pty Ltd, Australia.
1616
The software is distributed under an MIT licence. See LICENSE.txt.
1717
"""
1818

0 commit comments

Comments
 (0)