Skip to content

Commit

Permalink
Allow install to proceed even if there's no place to build wheels.
Browse files Browse the repository at this point in the history
Fixes pypa#6158
  • Loading branch information
tgs committed Jan 23, 2019
1 parent beeacad commit 212491b
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/pip/_internal/wheel.py
Expand Up @@ -840,13 +840,6 @@ def build(
newly built wheel, in preparation for installation.
:return: True if all the wheels built correctly.
"""
# TODO: This check fails if --no-cache-dir is set. And yet we
# might be able to build into the ephemeral cache, surely?
building_is_possible = self._wheel_dir or (
autobuilding and self.wheel_cache.cache_dir
)
assert building_is_possible

buildset = []
format_control = self.finder.format_control
for req in requirements:
Expand Down

0 comments on commit 212491b

Please sign in to comment.