From 306c0fce0f747fe1de4d082312c2829b88bb21db Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Mon, 16 Mar 2020 18:27:15 -0700 Subject: [PATCH] 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. --- direct/src/dist/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/direct/src/dist/commands.py b/direct/src/dist/commands.py index cc281fb4e3..6564592a1a 100644 --- a/direct/src/dist/commands.py +++ b/direct/src/dist/commands.py @@ -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: