fix: Use PyObject_VisitManagedDict() of Python 3.13 (#4973)
* fix: Use PyObject_VisitManagedDict() of Python 3.13 Use PyObject_VisitManagedDict() and PyObject_ClearManagedDict() in pybind11_traverse() and pybind11_clear() on Python 3.13 and newer. * Add Python 3.13 CI * tests: don't get numpy/scipy on 3.13 yet * ci: move 3.13 to upstream Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Showing
| ... | ... | @@ -7,9 +7,9 @@ numpy~=1.25.0; python_version=="3.9" and platform_python_implementation=='PyPy' |
| numpy~=1.19.3; platform_python_implementation!="PyPy" and python_version=="3.6" | ||
| numpy~=1.21.5; platform_python_implementation!="PyPy" and python_version>="3.7" and python_version<"3.10" | ||
| numpy~=1.22.2; platform_python_implementation!="PyPy" and python_version=="3.10" | ||
| numpy~=1.26.0; platform_python_implementation!="PyPy" and python_version>="3.11" | ||
| numpy~=1.26.0; platform_python_implementation!="PyPy" and python_version>="3.11" and python_version<"3.13" | ||
| pytest~=7.0 | ||
| pytest-timeout | ||
| scipy~=1.5.4; platform_python_implementation!="PyPy" and python_version<"3.10" | ||
| scipy~=1.8.0; platform_python_implementation!="PyPy" and python_version=="3.10" | ||
| scipy~=1.11.1; platform_python_implementation!="PyPy" and python_version>="3.11" | ||
| scipy~=1.11.1; platform_python_implementation!="PyPy" and python_version>="3.11" and python_version<"3.13" |
Please
register
or
sign in
to comment