Skip to content

Commit

Permalink
Update supported python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tpazderka committed Oct 18, 2024
1 parent 35b0895 commit 3380d6d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python: [3.8, 3.9, "3.10", "3.11"]
python: [3.9, "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ image:

environment:
matrix:
- TOXENV: py38
- TOXENV: py39
- TOXENV: py310
- TOXENV: py311
- TOXENV: py312
- TOXENV: py313

build: off

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,13 @@
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules"],
python_requires='~=3.8',
python_requires='~=3.9',
extras_require={
'develop': ["cherrypy==3.2.4", "pyOpenSSL"],
'testing': tests_requires,
Expand All @@ -76,7 +77,6 @@
"mako",
"cryptography",
"defusedxml",
'typing_extensions; python_version<"3.8"',
],
long_description_content_type="text/x-rst",
zip_safe=False,
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311},docs,quality
envlist = py{39,310,311,312,313},docs,quality
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 3380d6d

Please sign in to comment.