Added support for Python 3.13. (#539)

This commit is contained in:
David Smith 2024-11-18 19:57:11 +00:00 committed by GitHub
parent e25b4bcc31
commit 32ac73e1a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 1 deletions

View File

@ -20,6 +20,7 @@ jobs:
- "3.10" - "3.10"
- "3.11" - "3.11"
- "3.12" - "3.12"
- "3.13"
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@ -1,6 +1,8 @@
4.2.0 (to be released) 4.2.0 (to be released)
------------------ ------------------
* Added support for Python 3.13.
* Drop support for EOL Python 3.8. * Drop support for EOL Python 3.8.
* Removed unused pytest-runner * Removed unused pytest-runner

View File

@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12 Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Internet :: WWW/HTTP Topic :: Internet :: WWW/HTTP
[options] [options]

View File

@ -1,6 +1,6 @@
[tox] [tox]
envlist = envlist =
py{39,310,311,312} py{39,310,311,312,313}
[testenv] [testenv]
extras = tests extras = tests