summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2022-11-29 08:27:26 +0100
committerMichael Howitz <mh@gocept.com>2022-11-29 08:27:26 +0100
commit69d0e18a5482ad0cc5927b914078ccc23d155b8c (patch)
tree4811e1bb1c4240393398b94fec45f5a3a00246b7
parentd8d4d16bef73f9918d0515c4dd5f3902a7de0633 (diff)
downloadzope-location-69d0e18a5482ad0cc5927b914078ccc23d155b8c.tar.gz
Add support for Python 3.8, 3.9, 3.10, 3.11; drop 3.4.
-rw-r--r--CHANGES.rst4
-rw-r--r--setup.py5
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 4850898..f98e012 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -5,7 +5,9 @@
4.3 (unreleased)
================
-- Nothing changed yet.
+- Add support for Python 3.8, 3.9, 3.10, 3.11.
+
+- Drop support for Python 3.4.
4.2 (2018-10-09)
diff --git a/setup.py b/setup.py
index 4c069f6..8e30d28 100644
--- a/setup.py
+++ b/setup.py
@@ -64,10 +64,13 @@ setup(name='zope.location',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
+ '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',
'Natural Language :: English',