mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 08:12:27 +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:
parent
cc298742ec
commit
f2863b6c65
@ -334,7 +334,8 @@ class Senpy(object):
|
|||||||
if requirements:
|
if requirements:
|
||||||
pip_args = []
|
pip_args = []
|
||||||
pip_args.append('install')
|
pip_args.append('install')
|
||||||
pip_args.append('--use-wheel')
|
pip_args.append('--only-binary')
|
||||||
|
pip_args.append(':all:')
|
||||||
for req in requirements:
|
for req in requirements:
|
||||||
pip_args.append(req)
|
pip_args.append(req)
|
||||||
logger.info('Installing requirements: ' + str(requirements))
|
logger.info('Installing requirements: ' + str(requirements))
|
||||||
|
Loading…
Reference in New Issue
Block a user