Add `Python 3.12` to tests.
parent
1c1945c1d9
commit
55be190dc0
|
|
@ -23,6 +23,7 @@ jobs:
|
||||||
python-version {3.9}, django-version {3.0, 3.1, 3.2, 4.0, 4.1, 4.2}, database {sqlite, postgres}
|
python-version {3.9}, django-version {3.0, 3.1, 3.2, 4.0, 4.1, 4.2}, database {sqlite, postgres}
|
||||||
python-version {3.10}, django-version {3.2, 4.0, 4.1, 4.2}, database {sqlite, postgres}
|
python-version {3.10}, django-version {3.2, 4.0, 4.1, 4.2}, database {sqlite, postgres}
|
||||||
python-version {3.11}, django-version {4.1, 4.2}, database {sqlite, postgres}
|
python-version {3.11}, django-version {4.1, 4.2}, database {sqlite, postgres}
|
||||||
|
python-version {3.12}, django-version {4.2}, database {sqlite, postgres}
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.create_matrix.outputs.matrix }}
|
matrix: ${{ steps.create_matrix.outputs.matrix }}
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,7 @@ classifiers = [
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"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",
|
||||||
"Topic :: Software Development :: Build Tools",
|
"Topic :: Software Development :: Build Tools",
|
||||||
]
|
]
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
|
|
||||||
2
tox.ini
2
tox.ini
|
|
@ -4,6 +4,7 @@ envlist =
|
||||||
py39-{dj30,dj31,dj32,dj40,dj41,dj42}-{sqlite,postgres},
|
py39-{dj30,dj31,dj32,dj40,dj41,dj42}-{sqlite,postgres},
|
||||||
py310-{dj32,dj40,dj41,dj42}-{sqlite,postgres},
|
py310-{dj32,dj40,dj41,dj42}-{sqlite,postgres},
|
||||||
py311-{dj41,dj42}-{sqlite,postgres},
|
py311-{dj41,dj42}-{sqlite,postgres},
|
||||||
|
py312-{dj42}-{sqlite,postgres},
|
||||||
|
|
||||||
[gh-actions]
|
[gh-actions]
|
||||||
python =
|
python =
|
||||||
|
|
@ -11,6 +12,7 @@ python =
|
||||||
3.9: py39
|
3.9: py39
|
||||||
3.10: py310
|
3.10: py310
|
||||||
3.11: py311
|
3.11: py311
|
||||||
|
3.12: py312
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
passenv = CI,GITHUB_WORKFLOW
|
passenv = CI,GITHUB_WORKFLOW
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue