mirror of
https://github.com/jazzband/django-constance.git
synced 2026-03-16 22:40:24 +00:00
feat(tests): add python 3.13 to tests (#600)
This commit is contained in:
parent
bb50d5e4c5
commit
d9c9c3e81f
3 changed files with 4 additions and 2 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
]
|
||||
|
|
|
|||
3
tox.ini
3
tox.ini
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue