summaryrefslogtreecommitdiff
path: root/docs/narr/upgrading.rst
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-01-22 15:15:34 -0800
committerSteve Piercy <web@stevepiercy.com>2016-01-22 15:15:34 -0800
commit5adb45a47e4ebfff5d2ea28833ef29a7f3ddbb25 (patch)
tree0b1196ccf6293834f9153a06f57bd223bea2ea89 /docs/narr/upgrading.rst
parent70074c141afd0bbc96fee264c6a929fb7a519273 (diff)
downloadpyramid-5adb45a47e4ebfff5d2ea28833ef29a7f3ddbb25.tar.gz
pyramid-5adb45a47e4ebfff5d2ea28833ef29a7f3ddbb25.tar.bz2
pyramid-5adb45a47e4ebfff5d2ea28833ef29a7f3ddbb25.zip
Add Python support policy (see https://github.com/Pylons/pyramid/pull/2256#issuecomment-174029882)
Diffstat (limited to 'docs/narr/upgrading.rst')
-rw-r--r--docs/narr/upgrading.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/narr/upgrading.rst b/docs/narr/upgrading.rst
index db9b5e090..cacfba92a 100644
--- a/docs/narr/upgrading.rst
+++ b/docs/narr/upgrading.rst
@@ -75,6 +75,27 @@ changes are noted in the :ref:`changelog`, so it's possible to know that you
should change older spellings to newer ones to ensure that people reading your
code can find the APIs you're using in the Pyramid docs.
+
+Python support policy
+~~~~~~~~~~~~~~~~~~~~~
+
+At the time of a Pyramid version release, each supports all versions of Python
+through the end of their lifespans. The end-of-life for a given version of
+Python is when security updates are no longer released.
+
+- `Python 3.2 Lifespan <https://www.python.org/dev/peps/pep-0392/#lifespan>`_
+ ends February 2016.
+- `Python 3.3 Lifespan <https://www.python.org/dev/peps/pep-0392/#lifespan>`_
+ ends September 2017.
+- `Python 3.4 Lifespan <https://www.python.org/dev/peps/pep-0429/>`_ TBD.
+- `Python 3.5 Lifespan <https://www.python.org/dev/peps/pep-0478/>`_ TBD.
+- `Python 3.6 Lifespan <https://www.python.org/dev/peps/pep-0494/#id4>`_
+ December 2021.
+
+To determine the Python support for a specific release of Pyramid, view its
+``tox.ini`` file at the root of the repository's version.
+
+
Consulting the change history
-----------------------------