We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f32a28 commit feade1fCopy full SHA for feade1f
.github/workflows/build.yml
@@ -12,7 +12,7 @@ jobs:
12
runs-on: ubuntu-latest
13
strategy:
14
matrix:
15
- python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
+ python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
16
steps:
17
- uses: actions/checkout@v2
18
- name: Set up Python ${{ matrix.python-version }}
setup.py
@@ -53,6 +53,7 @@ def get_test_requirements():
53
"Framework :: Django :: 4.0",
54
"Framework :: Django :: 4.1",
55
"Framework :: Django :: 4.2",
56
+ "Framework :: Django :: 5.0",
57
"Intended Audience :: Developers",
58
"Intended Audience :: System Administrators",
59
"License :: OSI Approved :: BSD License",
@@ -64,6 +65,7 @@ def get_test_requirements():
64
65
"Programming Language :: Python :: 3.9",
66
"Programming Language :: Python :: 3.10",
67
"Programming Language :: Python :: 3.11",
68
+ "Programming Language :: Python :: 3.12",
69
"Topic :: Database",
70
"Topic :: System :: Archiving",
71
"Topic :: System :: Archiving :: Backup",
tox.ini
@@ -1,5 +1,5 @@
1
[tox]
2
-envlist = py{37,38,39}-django22,py{37,38,39,310,311}-django{32,40,41,42,master},lint,docs,functional
+envlist = py{37,38,39}-django22,py{37,38,39,310,311,312}-django{32,40,41,42,50,master},lint,docs,functional
3
4
[testenv]
5
passenv = *
@@ -12,6 +12,7 @@ deps =
django40: django>=4.0,<4.1
django41: django>=4.1,<4.2
django42: django>=4.2,<4.3
+ django50: django>=5.0,<5.1
djangomaster: https://github.com/django/django/archive/master.zip
commands = {posargs:coverage run runtests.py}
@@ -21,8 +22,9 @@ python =
21
22
3.7: py37-django{22,32},functional
23
3.8: py38-django{22,32,40,41,42},functional
24
3.9: py39-django{22,32,40,41,42},functional
- 3.10: py310-django{22,32,40,41,42},functional
25
- 3.11: py311-django{40,41,42},functional
+ 3.10: py310-django{22,32,40,41,42,50},functional
26
+ 3.11: py311-django{40,41,42,50},functional
27
+ 3.12: py312-django{42,50},functional
28
29
[testenv:lint]
30
basepython = python
0 commit comments