-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dots in package names are getting replaced by underscores since 1.2.0 #6590
Comments
essentially duplicate #5782 |
This is still broken in 1.3.2. It worked in 1.1.15 My package name is fs.onedrivefs. The files produced by poetry build are fs_onedrivefs*. The dist-info folder in the wheel is similarly renamed. The name in the METADATA file is changed to fs-onedrivefs. Can I just reopen this bug? |
That's not a bug, that's the expected filename as mandate by the packaging standards. |
Thanks. I see your point about the all the renamings with the underscore. However, I don't think that covers the changing of the name field in the METADATA file. It causes the name of the package to be wrong in |
PEP 491 is apparently deferred - are we certain it's a packaging standard? Incidentally, |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
-vvv
option) and have included the output below.Issue
Given a
pyproject.toml
file like the followingpreviously the resulting wheel name after running
poetry build
wascom.namespace.package-5.3.0-py3-none-any.whl
. Now it iscom_namespace_package-5.3.0-py3-none-any.whl
. Same applies to metadata on various locations. Unfortunately we can not simply rename our packages due to permission handling based on artifact names.The text was updated successfully, but these errors were encountered: