-
Notifications
You must be signed in to change notification settings - Fork 162
feat: adding tags CLI interface #422
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 11 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
be6617d
feat: adding tags CLI interface
henryiii d6d521f
refactor: custom impl
henryiii bff25a3
refactor: tags run on one wheel each (simpler impl)
henryiii 90a045e
chore: address feedback without CLI change yet
henryiii 7cd6af4
refactor: use +/- mechanism
henryiii 903f363
refactor: using single tag option
henryiii 968690a
docs: adding docs for wheel tags
henryiii a4725c2
fixup! docs: adding docs for wheel tags
henryiii 793358f
fixup! docs: adding docs for wheel tags
henryiii 94ec75e
Update docs/reference/wheel_tags.rst
henryiii 5b9dd22
chore: adjust for pyproject.toml backend
henryiii af574fb
chore: remove manual mypy
henryiii 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
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 |
---|---|---|
|
@@ -7,3 +7,4 @@ Reference Guide | |
wheel_convert | ||
wheel_unpack | ||
wheel_pack | ||
wheel_tags |
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,62 @@ | ||
wheel tags | ||
========== | ||
|
||
Usage | ||
----- | ||
|
||
:: | ||
|
||
wheel tags [-h] [--remove] [--python-tag TAG] [--abi-tag TAG] [--platform-tag TAG] [--build NUMBER] WHEEL [...] | ||
|
||
Description | ||
----------- | ||
|
||
Make a new wheel with given tags from and existing wheel. Any tags left | ||
unspecified will remain the same. Multiple tags are separated by a "." Starting | ||
with a "+" will append to the existing tags. Starting with a "-" will remove a | ||
tag. Be sure to use the equals syntax on the shell so that it does not get | ||
parsed as an extra option, such as ``--python-tag=-py2``. The original file | ||
will remain unless ``--remove`` is given. The output filename(s) will be | ||
displayed on stdout for further processing. | ||
|
||
|
||
Options | ||
------- | ||
|
||
.. option:: --remove | ||
|
||
Remove the original wheel, keeping only the retagged wheel. | ||
|
||
.. option:: --python-tag=TAG | ||
|
||
Override the python tag (prepend with "+" to append, "-" to remove). | ||
Multiple tags can be separated with a dot. | ||
|
||
.. option:: --abi-tag=TAG | ||
|
||
Override the abi tag (prepend with "+" to append, "-" to remove). | ||
Multiple tags can be separated with a dot. | ||
|
||
.. option:: --platform-tag=TAG | ||
|
||
Override the platform tag (prepend with "+" to append, "-" to remove). | ||
Multiple tags can be separated with a dot. | ||
|
||
.. option:: --build=NUMBER | ||
|
||
Specify a build number. | ||
|
||
Examples | ||
-------- | ||
|
||
* Replace a wheel's Python specific tags with generic tags (if no Python extensions are present, for example):: | ||
|
||
$ wheel tags --python-tag=py2.py3 --abi-tag=none cmake-3.20.2-cp39-cp39-win_amd64.whl | ||
cmake-3.20.2-py2.py3-none-win_amd64.whl | ||
|
||
* Add compatibility tags for macOS universal wheels and older pips:: | ||
|
||
$ wheel tags \ | ||
--platform-tag=+macosx_10_9_x86_64.macosx_11_0_arm64 \ | ||
ninja-1.11.1-py2.py3-none-macosx_10_9_universal2.whl | ||
ninja-1.11.1-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.whl |
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.