We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afe52d8 commit 3456eeeCopy full SHA for 3456eee
pyproject.toml
@@ -1,14 +1,17 @@
1
[build-system]
2
-requires = ["setuptools>=61.0.0,<69.3.0"]
+requires = [
3
+ "setuptools>=75.8.1; python_version >= '3.9'",
4
+ "setuptools<75.4.0; python_version < '3.9'",
5
+]
6
build-backend = "setuptools.build_meta"
7
8
[project]
9
name = "Django"
10
dynamic = ["version"]
11
requires-python = ">= 3.8"
12
dependencies = [
- "asgiref >= 3.6.0, < 4",
- "backports.zoneinfo; python_version<'3.9'",
13
+ "asgiref>=3.6.0,<4",
14
+ "backports.zoneinfo; python_version < '3.9'",
15
"sqlparse>=0.3.1",
16
"tzdata; sys_platform == 'win32'",
17
]
0 commit comments