You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During final preparation that downloads the wheels skipped wheels, the logs are over-indented which make the overall output a bit confusing:
$ pip --use-feature=2020-resolver --use-feature=fast-deps download scipyWARNING: pip is using lazily downloaded wheels using HTTP range requests to obtain dependency information. This experimental feature is enabled through --use-feature=fast-deps and it is not ready for production.Collecting scipy Obtaining dependency information from scipy 1.5.2Collecting numpy>=1.14.5 Obtaining dependency information from numpy 1.19.1 Downloading scipy-1.5.2-cp38-cp38-manylinux1_x86_64.whl (25.7 MB) |████████████████████████████████| 25.7 MB 7.8 MB/s Saved ./scipy-1.5.2-cp38-cp38-manylinux1_x86_64.whl Downloading numpy-1.19.1-cp38-cp38-manylinux2010_x86_64.whl (14.5 MB) |████████████████████████████████| 14.5 MB 7.2 MB/s Saved ./numpy-1.19.1-cp38-cp38-manylinux2010_x86_64.whl
This is due to _prepare_linked_requirement assumes the indentation level, which is not needed when called from prepare_linked_requirement_more:
# type: (InstallRequirement, bool) -> Distribution
assertreq.link
link=req.link
iflink.is_wheelandself.wheel_download_dir:
# Download wheels to a dedicated dir when doing `pip wheel`.
download_dir=self.wheel_download_dir
else:
download_dir=self.download_dir
withindent_log():
Expected behavior
$ pip --use-feature=2020-resolver --use-feature=fast-deps download scipyWARNING: pip is using lazily downloaded wheels using HTTP range requests to obtain dependency information. This experimental feature is enabled through --use-feature=fast-deps and it is not ready for production.Collecting scipy Obtaining dependency information from scipy 1.5.2Collecting numpy>=1.14.5 Obtaining dependency information from numpy 1.19.1Downloading scipy-1.5.2-cp38-cp38-manylinux1_x86_64.whl (25.7 MB) |████████████████████████████████| 25.7 MB 7.8 MB/s Saved ./scipy-1.5.2-cp38-cp38-manylinux1_x86_64.whlDownloading numpy-1.19.1-cp38-cp38-manylinux2010_x86_64.whl (14.5 MB) |████████████████████████████████| 14.5 MB 7.2 MB/s Saved ./numpy-1.19.1-cp38-cp38-manylinux2010_x86_64.whl
The text was updated successfully, but these errors were encountered:
Environment
20.2.1current masterDescription
During final preparation that downloads the wheels skipped wheels, the logs are over-indented which make the overall output a bit confusing:
This is due to
_prepare_linked_requirement
assumes the indentation level, which is not needed when called fromprepare_linked_requirement_more
:pip/src/pip/_internal/operations/prepare.py
Lines 491 to 510 in 709ad37
Expected behavior
The text was updated successfully, but these errors were encountered: