Skip to content

Commit 6d05c29

Browse files
Merge branch 'pybind:master' into master
2 parents 7ab23e4 + 48eb5ad commit 6d05c29

File tree

5 files changed

+0
-17
lines changed

5 files changed

+0
-17
lines changed

.github/workflows/ci.yml

-6
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ jobs:
3636
- '3.9'
3737
- '3.12'
3838
- '3.13'
39-
- 'pypy-3.8'
40-
- 'pypy-3.9'
4139
- 'pypy-3.10'
4240
- 'pypy-3.11'
4341
- 'graalpy-24.1'
@@ -55,10 +53,6 @@ jobs:
5553
-DPYBIND11_FINDPYTHON=OFF
5654
-DCMAKE_CXX_FLAGS="-D_=1"
5755
exercise_D_: 1
58-
- runs-on: ubuntu-20.04
59-
python: 'pypy-3.8'
60-
args: >
61-
-DPYBIND11_FINDPYTHON=OFF
6256
- runs-on: windows-2019
6357
python: '3.8'
6458
args: >

include/pybind11/pytypes.h

-7
Original file line numberDiff line numberDiff line change
@@ -561,12 +561,6 @@ struct error_fetch_and_normalize {
561561
+ " failed to obtain the name "
562562
"of the normalized active exception type.");
563563
}
564-
# if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x07030a00
565-
// This behavior runs the risk of masking errors in the error handling, but avoids a
566-
// conflict with PyPy, which relies on the normalization here to change OSError to
567-
// FileNotFoundError (https://github.com/pybind/pybind11/issues/4075).
568-
m_lazy_error_string = exc_type_name_norm;
569-
# else
570564
if (exc_type_name_norm != m_lazy_error_string) {
571565
std::string msg = std::string(called)
572566
+ ": MISMATCH of original and normalized "
@@ -578,7 +572,6 @@ struct error_fetch_and_normalize {
578572
msg += ": " + format_value_and_trace();
579573
pybind11_fail(msg);
580574
}
581-
# endif
582575
#endif
583576
}
584577

tests/test_local_bindings.py

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import pytest
44

5-
import env # noqa: F401
65
from pybind11_tests import local_bindings as m
76

87

@@ -181,7 +180,6 @@ def test_internal_locals_differ():
181180
assert m.local_cpp_types_addr() != cm.local_cpp_types_addr()
182181

183182

184-
@pytest.mark.xfail("env.PYPY and sys.pypy_version_info < (7, 3, 2)")
185183
def test_stl_caster_vs_stl_bind(msg):
186184
"""One module uses a generic vector caster from `<pybind11/stl.h>` while the other
187185
exports `std::vector<int>` via `py:bind_vector` and `py::module_local`"""

tests/test_multiple_inheritance.py

-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,6 @@ def test_mi_static_properties():
263263
assert d.static_value == 0
264264

265265

266-
# Requires PyPy 6+
267266
def test_mi_dynamic_attributes():
268267
"""Mixing bases with and without dynamic attribute support"""
269268

tests/test_pytypes.py

-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ def __contains__(self, m):
198198
(CustomContains(), m.obj_contains),
199199
],
200200
)
201-
@pytest.mark.xfail("env.PYPY and sys.pypy_version_info < (7, 3, 10)", strict=False)
202201
def test_unhashable_exceptions(arg, func):
203202
class Unhashable:
204203
__hash__ = None

0 commit comments

Comments
 (0)