aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-03-20 00:48:58 +0200
committerMatti Picus <matti.picus@gmail.com>2020-03-20 00:48:58 +0200
commit6cc86ded9f5d427ceccfcb1d993e9c852840d1e3 (patch)
tree1776d3021498086d4447db85c6272ee512a43419 /testrunner
parentfix ad2e90e9a6b6 (diff)
downloadpypy-6cc86ded9f5d427ceccfcb1d993e9c852840d1e3.tar.gz
pypy-6cc86ded9f5d427ceccfcb1d993e9c852840d1e3.tar.bz2
pypy-6cc86ded9f5d427ceccfcb1d993e9c852840d1e3.zip
venv uses Scripts now on win32
Diffstat (limited to 'testrunner')
-rw-r--r--testrunner/get_info.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/testrunner/get_info.py b/testrunner/get_info.py
index 53af6622c7..5669917f4b 100644
--- a/testrunner/get_info.py
+++ b/testrunner/get_info.py
@@ -11,8 +11,7 @@ BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
if sys.platform.startswith('win'):
TARGET_NAME = 'pypy-c.exe'
VENV_TARGET = 'pypy.exe'
- # PyPy uses bin as of PR https://github.com/pypa/virtualenv/pull/1400
- TARGET_DIR = 'bin'
+ TARGET_DIR = 'Scripts'
else:
TARGET_NAME = 'pypy-c'
VENV_TARGET = 'pypy'