Skip to content

Commit 2eaab58

Browse files
committed
just ignore the pypy version check
1 parent 09f57aa commit 2eaab58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ class B:
434434

435435

436436
@pytest.mark.xfail(
437-
condition=sys.implementation.name == "pypy" and sys.implementation.version < (7, 2),
437+
condition=sys.implementation.name == "pypy" and sys.pypy_version_info < (7, 2), # type: ignore[attr-defined]
438438
reason="Forward references and string annotations are broken in PyPy3 < 7.2",
439439
strict=True,
440440
)

0 commit comments

Comments
 (0)