mirror of
https://github.com/pybind/pybind11.git
synced 2026-03-14 20:27:47 +00:00
fix: prepare for 3.14 beta 2 (#5697)
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
This commit is contained in:
@@ -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():
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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,
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user