# HG changeset patch # User ymh # Date 1580139458 -3600 # Node ID f6052f1c22874789d9569363ae63dd5cec08d563 # Parent 5e315a1a118c59689d8762e61f6458d7ec244212 adjust problem of package files with wheel, disable cache and wheel diff -r 5e315a1a118c -r f6052f1c2287 virtualenv/res/lib/lib_create_env.py --- a/virtualenv/res/lib/lib_create_env.py Mon Jan 27 15:59:29 2020 +0100 +++ b/virtualenv/res/lib/lib_create_env.py Mon Jan 27 16:37:38 2020 +0100 @@ -292,7 +292,7 @@ if sys.platform == 'win32': args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'pip')), 'install', res_env.URLS[key][res_source_key]] else: - args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', res_env.URLS[key][res_source_key]] + args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', '--no-binary=:all:', '--no-cache-dir', res_env.URLS[key][res_source_key]] if option_str : args.insert(4,option_str) call_subprocess(args,