diff --git a/pyproject.toml b/pyproject.toml index 8c613833..1e5a5289 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ keywords = [ ] classifiers = [ "Programming Language :: Python", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -35,7 +34,7 @@ pytest-django = "^4.5.2" tox = "^4.5.2" [tool.black] -target-version = ["py37", "py38", "py39", "py310", "py311"] +target-version = ["py38", "py39", "py310", "py311"] [tool.ruff] fix = true @@ -63,7 +62,7 @@ addopts = """\ django_find_project = false [tool.poetry.dependencies] -python = ">=3.7" +python = ">=3.8" django = ">=3.2" importlib-metadata = "6.7.0" diff --git a/tox.ini b/tox.ini index ceb5e8cf..c2f712a2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] isolated_build = true envlist = - python{37,38,39,310,311}-django{32,41,42} + python{38,39,310,311}-django{32,41,42} [testenv] skip_install = true