[pypy-commit] pypy default: fix for latest virtualenv HEAD

mattip pypy.commits at gmail.com
Sat Aug 10 14:51:23 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r97141:adc92f0ac6c1
Date: 2019-08-10 21:41 +0300
http://bitbucket.org/pypy/pypy/changeset/adc92f0ac6c1/

Log:	fix for latest virtualenv HEAD

diff --git a/testrunner/get_info.py b/testrunner/get_info.py
--- a/testrunner/get_info.py
+++ b/testrunner/get_info.py
@@ -10,9 +10,10 @@
 BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
 if sys.platform.startswith('win'):
     TARGET_NAME = r'pypy-c.exe'
-    TARGET_DIR = 'Scripts'
+    # PyPy uses bin as of PR https://github.com/pypa/virtualenv/pull/1400
+    TARGET_DIR = 'bin'
 else:
-    TARGET_NAME = 'pypy-c'
+    TARGET_NAME = 'pypy3-c'
     TARGET_DIR = 'bin'
 VENV_DIR = 'pypy-venv'
 


More information about the pypy-commit mailing list