diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index 42e32c1..75960d3 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -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.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.12}, django-version {4.2}, database {sqlite, postgres} outputs: matrix: ${{ steps.create_matrix.outputs.matrix }} diff --git a/pyproject.toml b/pyproject.toml index e8b932c..bb8170b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development :: Build Tools", ] dependencies = [ diff --git a/tox.ini b/tox.ini index f14cce7..c8109da 100644 --- a/tox.ini +++ b/tox.ini @@ -4,6 +4,7 @@ envlist = py39-{dj30,dj31,dj32,dj40,dj41,dj42}-{sqlite,postgres}, py310-{dj32,dj40,dj41,dj42}-{sqlite,postgres}, py311-{dj41,dj42}-{sqlite,postgres}, + py312-{dj42}-{sqlite,postgres}, [gh-actions] python = @@ -11,6 +12,7 @@ python = 3.9: py39 3.10: py310 3.11: py311 + 3.12: py312 [testenv] passenv = CI,GITHUB_WORKFLOW