diff --git a/README.rst b/README.rst index eb6e5949..a0ffcb4f 100644 --- a/README.rst +++ b/README.rst @@ -61,7 +61,7 @@ Provided by `T. Franzel `_. `Licensed under 3-Claus Requirements ------------ -- Python >= 3.6 +- Python >= 3.7 - Django (2.2, 3.2, 4.0, 4.1, 4.2, 5.0) - Django REST Framework (3.10.3, 3.11, 3.12, 3.13, 3.14) diff --git a/setup.py b/setup.py index 488db677..fbe55a9c 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ def get_version(package): author_email=author_email, packages=[p for p in find_namespace_packages(exclude=('tests*',)) if p.startswith(package)], include_package_data=True, - python_requires=">=3.6", + python_requires=">=3.7", install_requires=requirements, extras_require={ "offline": ["drf-spectacular-sidecar"], diff --git a/tox.ini b/tox.ini index 8648c0f1..0889f236 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = py311-lint,py311-docs, - {py36,py37,py38}-django{2.2}-drf{3.10,3.11}, + {py37,py38}-django{2.2}-drf{3.10,3.11}, {py37,py38,py39}-django{3.2}-drf{3.11,3.12}, {py38,py39,py310}-django{4.0,4.1}-drf{3.13,3.14}, {py311}-django{4.1, 4.2, 5.0}-drf{3.14},