Add support for Python 3.13

This commit is contained in:
Hugo van Kemenade 2024-12-21 15:45:35 +02:00
commit 7d4adfce3f
3 changed files with 4 additions and 2 deletions

View file

@ -15,7 +15,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu, macos, windows] os: [ubuntu, macos, windows]
python: ["3.10", "3.11", "3.12"] python: ["3.10", "3.11", "3.12", "3.13"]
include: include:
- os: ubuntu - os: ubuntu
python: "3.8" python: "3.8"

View file

@ -19,6 +19,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 :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System", "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System",
"Topic :: Internet :: WWW/HTTP :: Site Management", "Topic :: Internet :: WWW/HTTP :: Site Management",

View file

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py{3.8,3.9,3.10,3.11,3.12},docs envlist = py{3.8,3.9,3.10,3.11,3.12,3.13},docs
[testenv] [testenv]
basepython = basepython =
@ -8,6 +8,7 @@ basepython =
py3.10: python3.10 py3.10: python3.10
py3.11: python3.11 py3.11: python3.11
py3.12: python3.12 py3.12: python3.12
py3.13: python3.13
passenv = * passenv = *
usedevelop=True usedevelop=True
deps = deps =