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