Skip to content

Commit

Permalink
PyPy >= 7.3.9 fixed the venv problem on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip authored and gaborbernat committed May 11, 2022
1 parent 32bdb1e commit cb394c6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import os
import os.path
import platform
import shutil
import stat
import subprocess
Expand Down Expand Up @@ -66,7 +65,9 @@ def pytest_addoption(parser):
parser.addoption('--only-integration', action='store_true', help='only run the integration tests')


PYPY3_WIN_VENV_BAD = platform.python_implementation() == 'PyPy' and sys.platform.startswith('win')
PYPY3_WIN_VENV_BAD = (
sys.implementation.name == 'pypy' and sys.implementation.version < (7, 3, 9) and sys.platform.startswith('win')
)
PYPY3_WIN_M = 'https://foss.heptapod.net/pypy/pypy/-/issues/3323 and https://foss.heptapod.net/pypy/pypy/-/issues/3321'


Expand Down

0 comments on commit cb394c6

Please sign in to comment.