Fix PyPI PEP 625 incompatibility#5
Conversation
|
I did not attempt to change There is an assumption here that |
Uploading tarballs with `-` instead of `_` results in the following email sent to the uploader: > In the future, PyPI will require all newly uploaded source > distribution filenames to comply with PEP 625. Any source > distributions already uploaded will remain in place as-is and do not > need to be updated. > Specifically, your recent upload of 'package-name-0.0.1.tar.gz' is > incompatible with PEP 625 because it does not contain the normalized > project name 'package_name'. > In most cases, this can be resolved by upgrading the version of your > build tooling to a later version that supports PEP 625 and produces > compliant filenames.
|
The issue with PEP 625 was resolved by #3. I believe that the reason you're seeing the warning is because you're using an older version of setuptools that doesn't implement PEP 625. Switching to using |
|
Oh, good to know. I think we can close this PR then. |
Uploading tarballs with
-instead of_results in the following email sent to the uploader: