From e2e21541338b263409a7d2ae4e17e18caca9aea5 Mon Sep 17 00:00:00 2001 From: "Handzsuj, Thomas" Date: Mon, 13 Mar 2023 16:30:18 +0100 Subject: [PATCH 1/3] remove py36; add py310,py311 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f500c5e2..551c7db7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = flake8,py35,py36,py37,py38,py39 +envlist = flake8,py37,py38,py39,py310,py311 skip_missing_interpreters = True [testenv] From 6caccc7fa345667a4d7d1904af80275836f803b2 Mon Sep 17 00:00:00 2001 From: handzsujt Date: Mon, 13 Mar 2023 16:39:39 +0100 Subject: [PATCH 2/3] Update setup.py Add Python 3.10,3.11 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 22e16370..baac041e 100644 --- a/setup.py +++ b/setup.py @@ -70,6 +70,8 @@ def parse_requirements(requirements, ignore=('setuptools',)): "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", "Topic :: Office/Business", "Topic :: Utilities", ], From f0620c44252f49ff2ab10341120ee8350f9990cd Mon Sep 17 00:00:00 2001 From: handzsujt Date: Mon, 13 Mar 2023 16:48:53 +0100 Subject: [PATCH 3/3] leave py35, py36 somebody still might uses this --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 551c7db7..8d6ec43e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = flake8,py37,py38,py39,py310,py311 +envlist = flake8,py35,py36,py37,py38,py39,py310,py311 skip_missing_interpreters = True [testenv]