diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index a02cf40..f948036 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python 3.11 uses: actions/setup-python@v1 @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.8", "3.9", "3.10", "3.11"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12"] django: ["32", "41", "50", "main"] exclude: - django: "50" @@ -54,7 +54,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v4 diff --git a/pyproject.toml b/pyproject.toml index 769d434..05378bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] [tool.poetry.dependencies] diff --git a/tox.ini b/tox.ini index 3466cd6..ac934ab 100644 --- a/tox.ini +++ b/tox.ini @@ -5,6 +5,7 @@ envlist = fmt, lint, mypy, py39-django{32,40,41} py310-django{32,40,41,42,50,main} py311-django{41,42,50,main} + py312-django{41,42,50,main} [testenv] deps =