-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add always-install-via-wheel feature
--no-binary does not disable wheel building anymore, so a wheel is built during the install process and setup.py install is not used anymore in this case --build-option and --global-option are passed to setup.py bdist_wheel in the pip install command, like it is done in the pip wheel command.
- Loading branch information
Showing
6 changed files
with
57 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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 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,6 @@ | ||
Add an ``always-install-via-wheel`` feature flag. When enabled, ``--no-binary`` | ||
no longer implies using the legacy ``setup.py install`` path, and instead | ||
a wheel is built locally before installing. ``--build-option`` and | ||
``--global-option`` are now passed to ``setup.py bdist_wheel`` in ``pip | ||
install``, as it was already done in ``pip wheel``. ``--install-option`` is | ||
ignored (because there is no ``setup.py install`` involved). |
This file contains 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 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 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 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