From 46729768a322cf3c382b51c9c7c2b54705e90155 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sat, 23 Mar 2024 12:36:35 -0500 Subject: [PATCH] Drop support for python 3.4-3.6, add support for 3.8-3.11 --- src/pgwui_develop/TEMPLATE/setup.py.mak | 7 ++++--- src/pgwui_develop/TEMPLATE/tox.ini.mak | 9 +++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/pgwui_develop/TEMPLATE/setup.py.mak b/src/pgwui_develop/TEMPLATE/setup.py.mak index 03f03a2..1fd0cf8 100644 --- a/src/pgwui_develop/TEMPLATE/setup.py.mak +++ b/src/pgwui_develop/TEMPLATE/setup.py.mak @@ -115,10 +115,11 @@ 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/src/pgwui_develop/TEMPLATE/tox.ini.mak b/src/pgwui_develop/TEMPLATE/tox.ini.mak index 1c61400..37400fb 100644 --- a/src/pgwui_develop/TEMPLATE/tox.ini.mak +++ b/src/pgwui_develop/TEMPLATE/tox.ini.mak @@ -1,12 +1,13 @@ [tox] -envlist = py{34,35,36,37} +envlist = py{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 -- 2.34.1