diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4077bd7..6e8454c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 4 matrix: - python: ["3.8", "3.9", "3.10", "3.11"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 3b04e70..5792aa2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ classifiers=[ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Framework :: Django', 'Framework :: Django :: 4', 'Framework :: Wagtail', diff --git a/tox.ini b/tox.ini index 18d4de3..feb3edf 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - python{3.8,3.9,3.10,3.11}-django4.2-wagtail5.2 + python{3.8,3.9,3.10,3.113.12}-django4.2-wagtail5.2 [testenv] commands = python runtests.py @@ -10,6 +10,7 @@ basepython = python3.9: python3.9 python3.10: python3.10 python3.11: python3.11 + python3.12: python3.12 deps = django4.2: Django>=4.2,<5.0