1
0
mirror of https://github.com/django/django.git synced 2025-06-02 01:59:11 +00:00

[4.2.x] Fixed #35980 -- Updated setuptools to normalize package names in built artifacts.

Backport of 3ae049b26b995c650c41ef918d5f60beed52b4ba from main.
This commit is contained in:
Nick Pope 2024-12-06 18:32:39 +00:00 committed by nessita
parent afe52d89c4
commit 3456eee4a3

View File

@ -1,5 +1,8 @@
[build-system]
requires = ["setuptools>=61.0.0,<69.3.0"]
requires = [
"setuptools>=75.8.1; python_version >= '3.9'",
"setuptools<75.4.0; python_version < '3.9'",
]
build-backend = "setuptools.build_meta"
[project]
@ -7,8 +10,8 @@ name = "Django"
dynamic = ["version"]
requires-python = ">= 3.8"
dependencies = [
"asgiref >= 3.6.0, < 4",
"backports.zoneinfo; python_version<'3.9'",
"asgiref>=3.6.0,<4",
"backports.zoneinfo; python_version < '3.9'",
"sqlparse>=0.3.1",
"tzdata; sys_platform == 'win32'",
]