diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 95b52c8..29cdc78 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -11,7 +11,6 @@ jobs: fail-fast: false matrix: include: - - python-version: 3.8 - python-version: 3.9 - python-version: "3.10" - python-version: "3.11" diff --git a/README.md b/README.md index 5af1290..8db039d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The following relations are supported: Requirements ============ -- Python (3.8, 3.9, 3.10, 3.11, 3.12) +- Python (3.9, 3.10, 3.11, 3.12) - Django (4.2, 5.0) - djangorestframework (3.14+) diff --git a/setup.py b/setup.py index 97da8f9..5dd19e8 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def get_version(package): }, include_package_data=True, zip_safe=False, - python_requires='>=3.8', + python_requires='>=3.9', classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', @@ -52,7 +52,6 @@ def get_version(package): 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', diff --git a/tox.ini b/tox.ini index 40284c1..16c970e 100644 --- a/tox.ini +++ b/tox.ini @@ -4,14 +4,13 @@ DJANGO_SETTINGS_MODULE = tests.settings [tox] envlist = - py{38,39,310,311,312}-dj42-drf{314,315}-pytest + py{39,310,311,312}-dj42-drf{314,315}-pytest py{310,311,312}-dj50-drf{314,315}-pytest py312-dj50-drf315-mypy skip_missing_interpreters = true [gh-actions] python = - 3.8: py38 3.9: py39 3.10: py310 3.11: py311