[pypy-commit] pypy py3.5: pypy uses bin not Scripts, https://github.com/pypa/virtualenv/issues/789

mattip pypy.commits at gmail.com
Sat Dec 30 12:25:29 EST 2017


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5
Changeset: r93603:c53457980876
Date: 2017-12-30 19:19 +0200
http://bitbucket.org/pypy/pypy/changeset/c53457980876/

Log:	pypy uses bin not Scripts,
	https://github.com/pypa/virtualenv/issues/789

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


More information about the pypy-commit mailing list