This is an automated email from the ASF dual-hosted git repository.

jdanek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git


The following commit(s) were added to refs/heads/main by this push:
     new 1cb1353  PROTON-2399 Support Python 3.10 (#322)
1cb1353 is described below

commit 1cb13535ff6bda8dd426154a9e5fb3b2d31b3ecb
Author: Jiri Daněk <jda...@redhat.com>
AuthorDate: Thu Jul 8 17:43:41 2021 +0200

    PROTON-2399 Support Python 3.10 (#322)
    
    Using py310 in envlist is necessary on Fedora Rawhide, which might be 
installed with
    this version of Python only.
    
    Using py310 in envlist is supported since tox v3.14.0
---
 python/setup.py.in | 3 ++-
 python/tox.ini     | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/python/setup.py.in b/python/setup.py.in
index a83d0d5..697fa70 100644
--- a/python/setup.py.in
+++ b/python/setup.py.in
@@ -277,7 +277,8 @@ setup(name='python-qpid-proton',
                    "Programming Language :: Python :: 3.6",
                    "Programming Language :: Python :: 3.7",
                    "Programming Language :: Python :: 3.8",
-                   "Programming Language :: Python :: 3.9"],
+                   "Programming Language :: Python :: 3.9",
+                   "Programming Language :: Python :: 3.10"],
       cmdclass={
           'configure': Configure,
           'swig': Swig,
diff --git a/python/tox.ini b/python/tox.ini
index 9206d57..f0ae06e 100644
--- a/python/tox.ini
+++ b/python/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 # This will be overridden by ctest setting TOXENV for anything but this default
-envlist = pep8,py36,py37,py38,py39
+envlist = pep8,py36,py37,py38,py39,py310
 minversion = 1.7.2
 setupdir = {toxinidir}/dist
 skip_missing_interpreters = True

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@qpid.apache.org
For additional commands, e-mail: commits-h...@qpid.apache.org

Reply via email to