fix: prepare for 3.14 beta 2 (#5697)

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
Henry Schreiner
2025-05-27 00:05:19 -04:00
committed by GitHub
parent 6e3e8515e7
commit 1c10d5e9b1
3 changed files with 7 additions and 5 deletions

View File

@@ -306,8 +306,9 @@ def test_property_rvalue_policy():
# https://foss.heptapod.net/pypy/pypy/-/issues/2447
@pytest.mark.xfail("env.PYPY")
@pytest.mark.xfail(
sys.version_info == (3, 14, 0, "beta", 1),
reason="3.14.0b1 bug: https://github.com/python/cpython/issues/133912",
sys.version_info == (3, 14, 0, "beta", 1)
or sys.version_info == (3, 14, 0, "beta", 2),
reason="3.14.0b1/2 bug: https://github.com/python/cpython/issues/133912",
strict=True,
)
def test_dynamic_attributes():

View File

@@ -15,7 +15,7 @@ def test_independent_subinterpreters():
sys.path.append(".")
# This is supposed to be added to PyPI sometime in 3.14's lifespan
# This is supposed to be added in 3.14.0b3
if sys.version_info >= (3, 15):
import interpreters
elif sys.version_info >= (3, 13):

View File

@@ -69,8 +69,9 @@ def test_roundtrip(cls_name):
pytest.param(
"PickleableWithDict",
marks=pytest.mark.xfail(
sys.version_info == (3, 14, 0, "beta", 1),
reason="3.14.0b1 bug: https://github.com/python/cpython/issues/133912",
sys.version_info == (3, 14, 0, "beta", 1)
or sys.version_info == (3, 14, 0, "beta", 2),
reason="3.14.0b1/2 bug: https://github.com/python/cpython/issues/133912",
strict=True,
),
),