Skip to content

Commit

Permalink
Merge pull request #1415 from dhermes/fix-1410
Browse files Browse the repository at this point in the history
Dropping Py33 support, adding Py35.
  • Loading branch information
dhermes committed Jan 24, 2016
2 parents 8960445 + f0e40a1 commit 2323e1a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
9 changes: 5 additions & 4 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -362,13 +362,13 @@ We support:

- `Python 2.6`_
- `Python 2.7`_
- `Python 3.3`_
- `Python 3.4`_
- `Python 3.5`_

.. _Python 2.6: https://docs.python.org/2.6/
.. _Python 2.7: https://docs.python.org/2.7/
.. _Python 3.3: https://docs.python.org/3.3/
.. _Python 3.4: https://docs.python.org/3.4/
.. _Python 3.5: https://docs.python.org/3.5/

Supported versions can be found in our ``tox.ini`` `config`_.

Expand All @@ -385,13 +385,14 @@ We may `drop 2.6`_ as a supported version as well since Python 2.6 is no
longer supported by the core development team.

We also explicitly decided to support Python 3 beginning with version
3.3. Reasons for this include:
3.4. Reasons for this include:

- Encouraging use of newest versions of Python 3
- Taking the lead of prominent open-source `projects`_
- Taking the lead of `prominent`_ open-source `projects`_
- `Unicode literal support`_ which allows for a cleaner codebase that
works in both Python 2 and Python 3

.. _prominent: https://docs.djangoproject.com/en/1.9/faq/install/#what-python-version-can-i-use-with-django
.. _projects: http://flask.pocoo.org/docs/0.10/python3/
.. _Unicode literal support: https://www.python.org/dev/peps/pep-0414/
.. _drop 2.6: https://github.com/GoogleCloudPlatform/gcloud-python/issues/995
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ We support:

- `Python 2.6`_
- `Python 2.7`_
- `Python 3.3`_
- `Python 3.4`_
- `Python 3.5`_

For more information, see `Supported Python Versions`_ in
``CONTRIBUTING``.

.. _Python 2.6: https://docs.python.org/2.6/
.. _Python 2.7: https://docs.python.org/2.7/
.. _Python 3.3: https://docs.python.org/3.3/
.. _Python 3.4: https://docs.python.org/3.4/
.. _Python 3.5: https://docs.python.org/3.5/
.. _Supported Python Versions: https://github.com/GoogleCloudPlatform/gcloud-python/blob/master/CONTRIBUTING.rst#supported-python-versions

Example Applications
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py26,py27,py33,py34,cover,docs,lint
py26,py27,py34,py35,cover,docs,lint

[testenv]
commands =
Expand Down

0 comments on commit 2323e1a

Please sign in to comment.