Skip to content

Commit

Permalink
update to nanobind v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skallweitNV committed Jan 23, 2025
1 parent da904ba commit 9b40066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/nanobind
Submodule nanobind updated 59 files
+4 −4 .github/workflows/ci.yml
+45 −0 .github/workflows/nvcc-win.yml
+3 −15 CMakeLists.txt
+5 −0 cmake/nanobind-config.cmake
+12 −0 docs/api_bazel.rst
+128 −9 docs/api_core.rst
+3 −3 docs/api_extra.rst
+3 −3 docs/bazel.rst
+105 −26 docs/changelog.rst
+20 −0 docs/free_threaded.rst
+7 −0 docs/functions.rst
+18 −11 docs/ndarray.rst
+1 −1 docs/release.rst
+2 −2 include/nanobind/eigen/dense.h
+9 −7 include/nanobind/make_iterator.h
+5 −2 include/nanobind/nanobind.h
+51 −13 include/nanobind/nb_attr.h
+2 −0 include/nanobind/nb_call.h
+16 −6 include/nanobind/nb_class.h
+19 −11 include/nanobind/nb_func.h
+7 −0 include/nanobind/nb_misc.h
+2 −1 include/nanobind/nb_types.h
+40 −39 include/nanobind/ndarray.h
+6 −2 include/nanobind/operators.h
+2 −1 include/nanobind/stl/bind_map.h
+11 −1 include/nanobind/stl/detail/chrono.h
+3 −2 include/nanobind/stl/detail/nb_optional.h
+1 −1 include/nanobind/stl/detail/nb_set.h
+5 −0 include/nanobind/stl/variant.h
+1 −1 pyproject.toml
+1 −1 src/__init__.py
+7 −8 src/nb_enum.cpp
+89 −43 src/nb_func.cpp
+1 −0 src/nb_internals.h
+20 −14 src/nb_type.cpp
+31 −6 tests/CMakeLists.txt
+137 −0 tests/test_callbacks.cpp
+58 −0 tests/test_callbacks.py
+56 −0 tests/test_classes.cpp
+29 −0 tests/test_classes.py
+35 −0 tests/test_classes_ext.pyi.ref
+10 −3 tests/test_eigen.cpp
+5 −1 tests/test_eigen.py
+4 −0 tests/test_enum.py
+2 −5 tests/test_enum_ext.pyi.ref
+101 −0 tests/test_functions.cpp
+101 −0 tests/test_functions.py
+18 −0 tests/test_functions_ext.pyi.ref
+15 −0 tests/test_make_iterator.cpp
+2 −0 tests/test_make_iterator.py
+4 −0 tests/test_make_iterator_ext.pyi.ref
+9 −8 tests/test_ndarray.cpp
+1 −0 tests/test_ndarray.py
+0 −2 tests/test_ndarray_ext.pyi.ref
+35 −0 tests/test_stl.cpp
+11 −0 tests/test_stl.py
+4 −0 tests/test_stl_bind_map.cpp
+3 −0 tests/test_stl_bind_map.py
+19 −0 tests/test_stl_ext.pyi.ref

0 comments on commit 9b40066

Please sign in to comment.