[pypy-commit] pypy default: the virtualenv issue was resolved so now win32 uses venv/Scripts/pypy-c.exe

mattip pypy.commits at gmail.com
Mon May 27 07:21:00 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r96699:129d1eff1693
Date: 2019-05-27 09:51 +0300
http://bitbucket.org/pypy/pypy/changeset/129d1eff1693/

Log:	the virtualenv issue was resolved so now win32 uses
	venv/Scripts/pypy-c.exe

diff --git a/testrunner/get_info.py b/testrunner/get_info.py
--- a/testrunner/get_info.py
+++ b/testrunner/get_info.py
@@ -10,8 +10,7 @@
 BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
 if sys.platform.startswith('win'):
     TARGET_NAME = r'pypy-c.exe'
-    # see https://github.com/pypa/virtualenv/issues/789
-    TARGET_DIR = 'bin'
+    TARGET_DIR = 'Scripts'
 else:
     TARGET_NAME = 'pypy-c'
     TARGET_DIR = 'bin'


More information about the pypy-commit mailing list