summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2023-01-18 09:46:01 +0100
committerGitHub <noreply@github.com>2023-01-18 09:46:01 +0100
commit3bbe22dafcc69c5ffa79707f5a74eb1faf466e12 (patch)
tree4bec6a7016732be33f2e1cddd80c18478cb2dee9 /setup.cfg
parentd54717118360e8679aa2bd0c5a1625f3e84712ba (diff)
downloaddjango-3bbe22dafcc69c5ffa79707f5a74eb1faf466e12.tar.gz
Fixed #34233 -- Dropped support for Python 3.8 and 3.9.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg5
1 files changed, 1 insertions, 4 deletions
diff --git a/setup.cfg b/setup.cfg
index afef79c2ab..529bc6044f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -17,8 +17,6 @@ classifiers =
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
Topic :: Internet :: WWW/HTTP
@@ -34,13 +32,12 @@ project_urls =
Tracker = https://code.djangoproject.com/
[options]
-python_requires = >=3.8
+python_requires = >=3.10
packages = find:
include_package_data = true
zip_safe = false
install_requires =
asgiref >= 3.6.0
- backports.zoneinfo; python_version<"3.9"
sqlparse >= 0.2.2
tzdata; sys_platform == 'win32'