Skip to content

Commit

Permalink
PROTON-2399 Support Python 3.10 (apache#322)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jiridanek authored Jul 8, 2021
1 parent e7aaf72 commit 1cb1353
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion python/tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 1cb1353

Please sign in to comment.