diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5241c6af..a1b032ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04] - python-version: ['3.8', '3.11'] + os: [ubuntu-20.04, ubuntu-24.04] + python-version: ['3.11'] toxenv: ["django42", "quality", "docs"] steps: diff --git a/setup.py b/setup.py index 181ef956..97b20cf9 100644 --- a/setup.py +++ b/setup.py @@ -158,7 +158,6 @@ def is_requirement(line): 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.11', ], ) diff --git a/tox.ini b/tox.ini index 6fb74812..47200d8e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38, 311}-django{42}, quality, docs +envlist = py{311}-django{42}, quality, docs [doc8] ignore = D001