Skip to content

Commit 3456eee

Browse files
ngnpopenessita
authored andcommitted
[4.2.x] Fixed #35980 -- Updated setuptools to normalize package names in built artifacts.
Backport of 3ae049b from main.
1 parent afe52d8 commit 3456eee

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
[build-system]
2-
requires = ["setuptools>=61.0.0,<69.3.0"]
2+
requires = [
3+
"setuptools>=75.8.1; python_version >= '3.9'",
4+
"setuptools<75.4.0; python_version < '3.9'",
5+
]
36
build-backend = "setuptools.build_meta"
47

58
[project]
69
name = "Django"
710
dynamic = ["version"]
811
requires-python = ">= 3.8"
912
dependencies = [
10-
"asgiref >= 3.6.0, < 4",
11-
"backports.zoneinfo; python_version<'3.9'",
13+
"asgiref>=3.6.0,<4",
14+
"backports.zoneinfo; python_version < '3.9'",
1215
"sqlparse>=0.3.1",
1316
"tzdata; sys_platform == 'win32'",
1417
]

0 commit comments

Comments
 (0)