From 2c95e627ab9d7891ef2b69eb37267e746777add7 Mon Sep 17 00:00:00 2001 From: Chris Lenk Date: Wed, 6 Apr 2022 17:32:02 -0400 Subject: [PATCH] Add Python 3.9, 3.10 testing --- setup.py | 2 ++ tox.ini | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5059308..9b9bbcb 100644 --- a/setup.py +++ b/setup.py @@ -74,5 +74,7 @@ def get_version(): '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', ] ) diff --git a/tox.ini b/tox.ini index 28b546e..632a37a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py35, py36, py37, py38, rhel6 +envlist = py26, py27, py35, py36, py37, py38, py39, py310, rhel6 [testenv] commands = @@ -25,3 +25,5 @@ python = 3.6: py36 3.7: py37 3.8: py38 + 3.9: py39 + 3.10: py310