-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Use packaging.tags for doing compatible wheel tag calculation #7354
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
Merged
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
3ada01f
Convert return values in pep425tags.get_supported
chrahunt d386bb2
Copy get_supported into packaging.tags-like functions
chrahunt 54db17c
Use _cpython_tags, _generic_tags, and _compatible_tags
chrahunt 1c8c481
Only calculate py-compatible tags in one place
chrahunt 480911b
Remove unused abi arg from _compatible_tags
chrahunt 4659a78
Use packaging.tags.compatible_tags
chrahunt 750abca
Customize python_version for packaging.tags.compatible_tags
chrahunt 72d00dd
Customize interpreter for packaging.tags.compatible_tags
chrahunt 2de0b7c
Customize platforms for packaging.tags.compatible_tags
chrahunt c514c6b
Make packaging.tags.compatible_tags unconditional
chrahunt b91286c
Inline packaging.tags.compatible_tags
chrahunt 8f1c60e
Only use _cpython_tags for CPython
chrahunt e388df6
Remove impl from _cpython_tags
chrahunt 5dbef5d
Use packaging.tags.cpython_tags
chrahunt 147680a
Customize python_version for packaging.tags.cpython_tags
chrahunt 05045e7
Customize abis for packaging.tags.cpython_tags
chrahunt fecfadb
Customize platforms for packaging.tags.cpython_tags
chrahunt 56840c3
Make packaging.tags.cpython_tags unconditional
chrahunt 1574872
Inline packaging.tags.cpython_tags
chrahunt fa1ec40
Remove unused abi3 branch in _generic_tags
chrahunt 281273d
Use packaging.tags.generic_tags
chrahunt 77dbd27
Customize interpreter for packaging.tags.generic_tags
chrahunt 0bebeb6
Customize abis for packaging.tags.generic_tags
chrahunt 293b778
Customize platforms for packaging.tags.generic_tags
chrahunt 72dcd34
Make packaging.tags.generic_tags unconditional
chrahunt 3e66ab0
Inline packaging.tags.generic_tags
chrahunt ad546b5
Remove unnecessary conversion in get_supported
chrahunt 9b34435
Simplify _get_custom_platforms
chrahunt 2455977
Remove unused manylinux auto-deduction functions
chrahunt 7aaa705
Remove unused glibc functions
chrahunt 896317d
Remove unused abi functions
chrahunt 2b1b60f
Remove unused get_platform function
chrahunt ae21af7
Remove unused version functions
chrahunt d7fda71
Add news
chrahunt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Remove wheel tag calculation from pip and use ``packaging.tags``. This | ||
should provide more tags ordered better than in prior releases. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
follow up: I suggest moving the call to be changed -- changing
get_supported
to allow for version to be None (and use this value in that case).