1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-11-22 00:02:28 +00:00

Update extensions.py

--use-wheel is deprecated in favour of --only-binary and is currently not present in pip master branch (with an added option :all: which could specify particular packages).
--only-binary has been around since pip 7 or so.
This commit is contained in:
drevicko 2017-04-01 18:02:30 +01:00 committed by GitHub
parent cc298742ec
commit f2863b6c65

View File

@ -334,7 +334,8 @@ class Senpy(object):
if requirements:
pip_args = []
pip_args.append('install')
pip_args.append('--use-wheel')
pip_args.append('--only-binary')
pip_args.append(':all:')
for req in requirements:
pip_args.append(req)
logger.info('Installing requirements: ' + str(requirements))