summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Rivera <stefano@rivera.za.net>2022-12-25 13:40:47 -0400
committerStefano Rivera <stefano@rivera.za.net>2022-12-25 13:44:36 -0400
commitce639190b4a61b4d51c5cacbe634451cddfd6c39 (patch)
tree285ce58678c978e2d638afe7f26878c6b2a4aeee
parentaa25fbc378cd4d48fd2eb2c0d55ae488e2d6c9a0 (diff)
downloadpyramid-ce639190b4a61b4d51c5cacbe634451cddfd6c39.tar.gz
pyramid-ce639190b4a61b4d51c5cacbe634451cddfd6c39.tar.bz2
pyramid-ce639190b4a61b4d51c5cacbe634451cddfd6c39.zip
Declare support for python 3.11
-rw-r--r--CHANGES.rst2
-rw-r--r--docs/narr/upgrading.rst1
-rw-r--r--setup.py1
3 files changed, 4 insertions, 0 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 0ee6fd30d..698aec734 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -4,6 +4,8 @@ unreleased
Features
--------
+- Pyramid adds support for Python 3.11.
+
Bug Fixes
---------
diff --git a/docs/narr/upgrading.rst b/docs/narr/upgrading.rst
index e92a46285..5fc3dc9fa 100644
--- a/docs/narr/upgrading.rst
+++ b/docs/narr/upgrading.rst
@@ -90,6 +90,7 @@ Python is when security updates are no longer released.
- `Python 3.8 Lifespan <https://devguide.python.org/versions/#versions>`_ 2024-10.
- `Python 3.9 Lifespan <https://devguide.python.org/versions/#versions>`_ 2025-10.
- `Python 3.10 Lifespan <https://devguide.python.org/versions/#versions>`_ 2026-10.
+- `Python 3.11 Lifespan <https://devguide.python.org/versions/#versions>`_ 2027-10.
To determine the Python support for a specific release of Pyramid, view its
``tox.ini`` file at the root of the repository's version.
diff --git a/setup.py b/setup.py
index 17434313e..42d7d91a2 100644
--- a/setup.py
+++ b/setup.py
@@ -78,6 +78,7 @@ setup(
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Pyramid",