diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68188b6..35abcc2 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-24.04] + python-version: ['3.11'] toxenv: ["django42", "quality", "docs"] steps: diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index a0caedb..8edf516 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -7,7 +7,7 @@ on: jobs: push: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - name: Checkout diff --git a/setup.py b/setup.py index 474f3ef..fb78f1d 100644 --- a/setup.py +++ b/setup.py @@ -157,7 +157,6 @@ def is_requirement(line): "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", "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 6c907af..9eb3a39 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]