|
@@ -425,12 +425,13 @@ class build_apps(setuptools.Command):
|
|
|
os.remove(os.path.join(whldir, whl))
|
|
os.remove(os.path.join(whldir, whl))
|
|
|
|
|
|
|
|
pip_args = [
|
|
pip_args = [
|
|
|
|
|
+ '--disable-pip-version-check',
|
|
|
'download',
|
|
'download',
|
|
|
'-d', whldir,
|
|
'-d', whldir,
|
|
|
'-r', self.requirements_path,
|
|
'-r', self.requirements_path,
|
|
|
'--only-binary', ':all:',
|
|
'--only-binary', ':all:',
|
|
|
'--platform', platform,
|
|
'--platform', platform,
|
|
|
- '--abi', abi_tag
|
|
|
|
|
|
|
+ '--abi', abi_tag,
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
if self.use_optimized_wheels:
|
|
if self.use_optimized_wheels:
|