Skip to content

Commit cf4e6ae

Browse files
author
cclauss
authored
Stop recommending Python 3.3 because it is now EOL
https://docs.python.org/devguide/index.html#branchstatus
1 parent 39a066e commit cf4e6ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/futurize_cheatsheet.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ Step 0 goal: set up and see the tests passing on Python 2 and failing on Python
1414

1515
a. Clone the package from github/bitbucket. Optionally rename your repo to ``package-future``. Examples: ``reportlab-future``, ``paramiko-future``, ``mezzanine-future``.
1616
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`` or ``nosetests``)
17-
c. Optionally: if there is a ``.travis.yml`` file, add Python version 3.3 and remove any versions < 2.6.
18-
d. Install Python 3.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.::
17+
c. Optionally: if there is a ``.travis.yml`` file, add Python version 3.6 and remove any versions < 2.6.
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.::
1919
20-
conda create -n py33 python=3.3 pip
20+
conda create -n py36 python=3.6 pip
2121

2222
.. _porting-step1:
2323

0 commit comments

Comments
 (0)