summaryrefslogtreecommitdiff
path: root/src/virtualenv.py
diff options
context:
space:
mode:
authorBernat Gabor <gaborjbernat@gmail.com>2018-10-28 13:07:54 +0000
committerBernat Gabor <gaborjbernat@gmail.com>2018-10-28 16:54:00 +0000
commit5dbf019ff348fe9a0bc80b6c0868a71d7196bd87 (patch)
tree1b6c132d20002014cbfd995cc934cd01c7480693 /src/virtualenv.py
parent3bcb31b75276f6cb689e248fc17a5fb1546d2f3a (diff)
downloadvirtualenv-jython.tar.gz
Jython to CIjython
Diffstat (limited to 'src/virtualenv.py')
-rwxr-xr-xsrc/virtualenv.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/virtualenv.py b/src/virtualenv.py
index 1fae20a..1de4e0c 100755
--- a/src/virtualenv.py
+++ b/src/virtualenv.py
@@ -894,7 +894,7 @@ def install_wheel(project_names, py_executable, search_dirs=None, download=False
search_dirs = file_search_dirs()
wheels = find_wheels(["setuptools", "pip"], search_dirs)
- pythonpath = os.pathsep.join(wheels)
+ python_path = os.pathsep.join(wheels)
# PIP_FIND_LINKS uses space as the path separator and thus cannot have paths
# with spaces in them. Convert any of those to local file:// URL form.
@@ -936,7 +936,7 @@ def install_wheel(project_names, py_executable, search_dirs=None, download=False
try:
args = ["install", "--ignore-installed"]
if cert_file is not None:
- args += ["--cert", cert_file.name]
+ args += ["--cert", cert_file.name, "-vvv", "--no-cache"]
args += sys.argv[1:]
sys.exit(_main(args))
@@ -951,8 +951,8 @@ def install_wheel(project_names, py_executable, search_dirs=None, download=False
logger.indent += 2
env = {
- "PYTHONPATH": pythonpath,
- "JYTHONPATH": pythonpath, # for Jython < 3.x
+ "PYTHONPATH": python_path,
+ "JYTHONPATH": python_path, # for Jython < 3.x
"PIP_FIND_LINKS": findlinks,
"PIP_USE_WHEEL": "1",
"PIP_ONLY_BINARY": ":all:",