mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 16:58:40 -04:00
build_apps: Disable the pip version check when downloading wheels
If the user is not using the latest version of pip, they will likely be spammed by pip enough as is. There is not much need to remind them about this for each built platform.
This commit is contained in:
parent
a968caf1d2
commit
306c0fce0f
3
direct/src/dist/commands.py
vendored
3
direct/src/dist/commands.py
vendored
@ -425,12 +425,13 @@ class build_apps(setuptools.Command):
|
||||
os.remove(os.path.join(whldir, whl))
|
||||
|
||||
pip_args = [
|
||||
'--disable-pip-version-check',
|
||||
'download',
|
||||
'-d', whldir,
|
||||
'-r', self.requirements_path,
|
||||
'--only-binary', ':all:',
|
||||
'--platform', platform,
|
||||
'--abi', abi_tag
|
||||
'--abi', abi_tag,
|
||||
]
|
||||
|
||||
if self.use_optimized_wheels:
|
||||
|
Loading…
x
Reference in New Issue
Block a user