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