diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a2ee92..e87b356 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,6 @@ jobs: python-version: - '3.8' - '3.11' - - '3.12' toxenv: [quality, django42] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index bc5ba87..725a125 100755 --- a/setup.py +++ b/setup.py @@ -69,7 +69,6 @@ def get_version(*file_paths): 'Programming Language :: Python', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.11', - 'Programming Language :: Python :: 3.12', 'Framework :: Django', 'Framework :: Django :: 4.2', ], diff --git a/tox.ini b/tox.ini index f821fa1..12cce0c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38, 311, 312}-django{42}, quality +envlist = py{38, 311}-django{42}, quality [pytest] addopts = --cov=tests --cov-report term --cov-config=.coveragerc -p no:randomly