Enable Python 3.13 support

This commit is contained in:
François Voron
2024-11-03 12:52:25 +00:00
committed by GitHub
parent caa17889e1
commit 1e163804e2
2 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python_version: [3.9, '3.10', '3.11', '3.12'] python_version: [3.9, '3.10', '3.11', '3.12', '3.13']
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python_version: [3.9, '3.10', '3.11', '3.12'] python_version: [3.9, '3.10', '3.11', '3.12', '3.13']
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -136,6 +136,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",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Session", "Topic :: Internet :: WWW/HTTP :: Session",
] ]