From 5a9dcf739454f4a7c1422dd929c3e2439185fe34 Mon Sep 17 00:00:00 2001 From: Miro Hrončok Date: Sep 07 2021 14:49:57 +0000 Subject: Test and support Python 3.10 Signed-off-by: Miro Hrončok --- diff --git a/README.rst b/README.rst index d7991a3..51ad961 100644 --- a/README.rst +++ b/README.rst @@ -3,7 +3,7 @@ Introduction This is the fedpkg project, which mostly is a subclass of the rpkg project. -rpkg works with Python 2.7, 3.6, 3.7 and 3.8. +rpkg works with Python 2.7, 3.6, 3.9 and 3.10. License ======= diff --git a/setup.py b/setup.py index 282083b..0c5b56e 100755 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ setup( 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', '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 bb05d1a..009f3ae 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py36,py39,flake8 +envlist = py27,py36,py39,py310,flake8 [testenv] sitepackages=false @@ -7,6 +7,7 @@ basepython= py27: {env:TOXPYTHON:python2.7} py36: {env:TOXPYTHON:python3.6} py39: {env:TOXPYTHON:python3.9} + py310: {env:TOXPYTHON:python3.10} flake8: {env:TOXPYTHON:python3.6} flake8python2: {env:TOXPYTHON:python2.7} deps =