diff options
author | John Snow <jsnow@redhat.com> | 2024-06-26 19:22:30 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2024-07-12 16:36:20 -0400 |
commit | 45b14be9b63ac3df9f2b31c249fc4520837c00b9 (patch) | |
tree | 83c6cdb4f1c8998400ef07b6358efe88152d4a4a /python | |
parent | e38900450fa900828cd7d5bc84c3a6a8af693696 (diff) |
python: enable testing for 3.13
Python 3.13 is in beta and Fedora 41 is preparing to make it the default
system interpreter; enable testing for it.
(In the event problems develop prior to release, it should only impact
the check-python-tox job, which is not run by default and is allowed to
fail.)
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Tested-by: Alex Bennée <alex.bennee@linaro.org>
Message-id: 20240626232230.408004-5-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python')
-rw-r--r-- | python/setup.cfg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/setup.cfg b/python/setup.cfg index 8ebd345d7e..3b4e2cc550 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -19,6 +19,7 @@ classifiers = Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 Typing :: Typed [options] @@ -184,7 +185,7 @@ multi_line_output=3 # of python available on your system to run this test. [tox:tox] -envlist = py38, py39, py310, py311, py312 +envlist = py38, py39, py310, py311, py312, py313 skip_missing_interpreters = true [testenv] |