You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python 2.6 and 3.3 are end of life. They are no longer receiving bug
fixes, including for security issues. Python 2.6 went EOL on 2013-10-29
and on 2017-09-29. For additional details on support Python versions,
see:
https://devguide.python.org/#status-of-python-branches
Removing support for EOL Pythons will reduce testing and maintenance
resources.
Using pypinfo, here are the PyPI download statistics for the last 30
days, showing low numbers for these EOL Pythons:
| python_version | percent | download_count |
| -------------- | ------: | -------------: |
| 2.7 | 56.49% | 3,841,256 |
| 3.6 | 30.41% | 2,067,785 |
| 3.5 | 8.38% | 569,774 |
| 3.4 | 3.15% | 214,075 |
| 3.7 | 1.50% | 102,095 |
| 2.6 | 0.04% | 2,960 |
| 3.3 | 0.02% | 1,236 |
| 3.8 | 0.00% | 84 |
| 3.2 | 0.00% | 46 |
| None | 0.00% | 33 |
https://github.com/ofek/pypinfo
This change only removes the documentation of 2.6 and 3.3. Legacy code
is expected to be removed in future commits as the changes are quite
extensive.
Copy file name to clipboardExpand all lines: docs/futurize_cheatsheet.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Step 0: setup
13
13
Step 0 goal: set up and see the tests passing on Python 2 and failing on Python 3.
14
14
15
15
a. Clone the package from github/bitbucket. Optionally rename your repo to ``package-future``. Examples: ``reportlab-future``, ``paramiko-future``, ``mezzanine-future``.
16
-
b. Create and activate a Python 2 conda environment or virtualenv. Install the package with ``python setup.py install`` and run its test suite on Py2.7 or Py2.6 (e.g. ``python setup.py test`` or ``py.test``)
16
+
b. Create and activate a Python 2 conda environment or virtualenv. Install the package with ``python setup.py install`` and run its test suite on Py2.7 (e.g. ``python setup.py test`` or ``py.test``)
17
17
c. Optionally: if there is a ``.travis.yml`` file, add Python version 3.6 and remove any versions < 2.6.
18
18
d. Install Python 3 with e.g. ``sudo apt-get install python3``. On other platforms, an easy way is to use `Miniconda <http://repo.continuum.io/miniconda/index.html>`_. Then e.g.::
0 commit comments