Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

Commit

Permalink
virtualenv fails when window's dll is libpypy3.9-c.exe
Browse files Browse the repository at this point in the history
revert this when pypa/virtualenv#2260 is resolved
  • Loading branch information
mattip committed Dec 29, 2021
1 parent 21def19 commit 15be8b7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pypy/goal/targetpypystandalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,10 @@ def get_additional_config_options(self):
return pypy_optiondescription

def target(self, driver, args):
driver.exe_name = 'pypy%d.%d-%%(backend)s' % CPYTHON_VERSION[:2]
if sys.platform == 'win32':
driver.exe_name = 'pypy3-%(backend)s'
else:
driver.exe_name = 'pypy%d.%d-%%(backend)s' % CPYTHON_VERSION[:2]

config = driver.config
parser = self.opt_parser(config)
Expand Down

0 comments on commit 15be8b7

Please sign in to comment.