1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Pull constant python_tag out of loop.

This commit is contained in:
Chris Hunt 2019-09-04 22:21:40 -04:00
parent 907bc82d8b
commit ebac7c012a

View file

@ -1084,13 +1084,16 @@ class WheelBuilder(object):
'Building wheels for collected packages: %s', 'Building wheels for collected packages: %s',
', '.join([req.name for (req, _) in buildset]), ', '.join([req.name for (req, _) in buildset]),
) )
python_tag = None
if should_unpack:
python_tag = pep425tags.implementation_tag
_cache = self.wheel_cache # shorter name _cache = self.wheel_cache # shorter name
with indent_log(): with indent_log():
build_success, build_failure = [], [] build_success, build_failure = [], []
for req, ephem in buildset: for req, ephem in buildset:
python_tag = None
if should_unpack: if should_unpack:
python_tag = pep425tags.implementation_tag
if ephem: if ephem:
output_dir = _cache.get_ephem_path_for_link(req.link) output_dir = _cache.get_ephem_path_for_link(req.link)
else: else: