feat(tests): add python 3.13 to tests (#600)

This commit is contained in:
Rotzbua 2024-12-09 08:43:06 +01:00 committed by GitHub
parent bb50d5e4c5
commit d9c9c3e81f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 2 deletions

View file

@ -28,7 +28,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v4

View file

@ -31,6 +31,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Utilities",
]

View file

@ -3,7 +3,7 @@ isolated_build = true
envlist =
py{38,39,310,311,312}-dj{42}-{unittest,pytest,checkmigrations}
py{310,311,312}-dj{50}-{unittest,pytest,checkmigrations}
py{310,311,312}-dj{main}-{unittest,pytest,checkmigrations}
py{310,311,312,313}-dj{main}-{unittest,pytest,checkmigrations}
skip_missing_interpreters = True
[testenv]
@ -38,3 +38,4 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313