Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 717
fix: sdist resulting in duplicate repo name when requirements line does not match#2658
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
3a80e6a5adac717a30c1fdc827aa22cce79ddfecc464f355c16e0bc6fa04ed5c56d6674fc4b2ad24c7aa6e98362ee995ad6ed4173File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -701,15 +701,15 @@ pip_fallback==0.0.1 | ||
| struct( | ||
| config_setting = None, | ||
| filename = "simple-0.0.1-py3-none-any.whl", | ||
| target_platforms = None, | ||
| target_platforms = ("cp315_linux_aarch64", "cp315_linux_arm", "cp315_linux_ppc", "cp315_linux_s390x", "cp315_linux_x86_64", "cp315_osx_aarch64", "cp315_osx_x86_64", "cp315_windows_x86_64"), | ||
| ||
| version = "3.15", | ||
| ), | ||
| ], | ||
| "pypi_315_simple_sdist_deadbeef": [ | ||
| struct( | ||
| config_setting = None, | ||
| filename = "simple-0.0.1.tar.gz", | ||
| target_platforms = None, | ||
| target_platforms = ("cp315_linux_aarch64", "cp315_linux_arm", "cp315_linux_ppc", "cp315_linux_s390x", "cp315_linux_x86_64", "cp315_osx_aarch64", "cp315_osx_x86_64", "cp315_windows_x86_64"), | ||
| version = "3.15", | ||
| ), | ||
| ], | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea of adding a common sdist feels like a hack. Maybe having a different algorithm/grouping would be better. Maybe having per sha grouping could be better.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Took a stab at changing it to use the sha instead.