Author: Matti Picus <matti.pi...@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'
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to