Drop python <= v3.5, add v3.8-v3.11
authorKarl O. Pinc <kop@karlpinc.com>
Fri, 23 Feb 2024 16:49:52 +0000 (10:49 -0600)
committerKarl O. Pinc <kop@karlpinc.com>
Fri, 23 Feb 2024 16:49:52 +0000 (10:49 -0600)
setup.py
tox.ini

index 323e3c83ddcfac89ab4eaa0cd231b0713a5025e7..2632ad91574cba1e20d73245f77b440eead35ae1 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -117,10 +117,12 @@ setup(
         # Specify the Python versions you support here. In particular, ensure
         # that you indicate whether you support Python 2, Python 3 or both.
         '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',
     ],
 
     # What does your project relate to?
diff --git a/tox.ini b/tox.ini
index 326af61d74913be7c2fc6a4a9f28195cf77003f7..f38d6a16a6faee44326a19d5fe6f84d9c7fd2388 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,12 +1,14 @@
 [tox]
-envlist = py{34,35,36,37}
+envlist = py{36,37,38,39,310,311}
 
 [testenv]
 basepython =
-    py34: python3.4
-    py35: python3.5
     py36: python3.6
     py37: python3.7
+    py38: python3.8
+    py39: python3.9
+    py310: python3.10
+    py311: python3.11
 deps =
     check-manifest
     cmarkgfm