Changes between Initial Version and Version 1 of Ticket #35980, comment 4
- Timestamp:
- Dec 9, 2024, 10:46:01 AM (9 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35980, comment 4
initial v1 7 7 * Django-5.2-py3-none-any.whl 8 8 9 The inconsistent naming seems to be a bug in setuptools [1] (mentionned in the comment on the patch I linked above).9 The inconsistent naming seems to be [https://github.com/pypa/setuptools/issues/3777 a bug in setuptools] (mentionned in the comment on the patch I linked above). 10 10 11 11 My opinion is that we should be using the latest version of setuptools and let it generate the filenames for the builds. Those filenames are internal plumbing and are not normally exposed to users. They also don't change how Django is installed when using tools like pip, since those tools will normalize names internally as well. 12 12 One hitch with this plan is that the current release documentation (both the public one and I assume the ad-hoc scripts used by the fellows) makes assumptions about those filenames that would not hold true anymore. 13 14 [1] https://github.com/pypa/setuptools/issues/3777