Skip to content

Commit

Permalink
[bindings] point nanobind submodule to my fork
Browse files Browse the repository at this point in the history
  • Loading branch information
ManifoldFR authored and jcarpent committed Aug 21, 2024
1 parent 4c0938e commit 02cf5c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[submodule "bindings/python/external/nanobind"]
path = bindings/python/external/nanobind
url = https://github.com/wjakob/nanobind
url = https://github.com/ManifoldFR/nanobind
[submodule "cmake-module"]
path = cmake-module
url = https://github.com/jrl-umi3218/jrl-cmakemodules.git
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/external/nanobind
Submodule nanobind updated 61 files
+2 −2 .github/workflows/ci.yml
+4 −1 .gitignore
+33 −14 CMakeLists.txt
+3 −1 cmake/nanobind-config.cmake
+157 −0 docs/api_bazel.rst
+2 −2 docs/api_cmake.rst
+53 −2 docs/api_core.rst
+23 −18 docs/api_extra.rst
+174 −0 docs/bazel.rst
+12 −4 docs/building.rst
+66 −0 docs/changelog.rst
+1 −1 docs/exchanging.rst
+2 −0 docs/index.rst
+6 −5 docs/ndarray.rst
+16 −1 docs/release.rst
+1 −1 docs/requirements.txt
+2 −2 docs/why.rst
+82 −15 include/nanobind/eigen/dense.h
+2 −1 include/nanobind/nanobind.h
+26 −7 include/nanobind/nb_cast.h
+24 −7 include/nanobind/nb_class.h
+10 −0 include/nanobind/nb_func.h
+8 −0 include/nanobind/nb_lib.h
+7 −0 include/nanobind/nb_misc.h
+30 −1 include/nanobind/nb_types.h
+61 −32 include/nanobind/ndarray.h
+48 −0 include/nanobind/stl/detail/nb_optional.h
+3 −45 include/nanobind/stl/optional.h
+1 −12 include/nanobind/stl/variant.h
+53 −2 pyproject.toml
+0 −84 setup.py
+1 −1 src/__init__.py
+1 −0 src/buffer.h
+17 −0 src/common.cpp
+1 −0 src/nb_enum.cpp
+8 −2 src/nb_func.cpp
+18 −2 src/nb_internals.cpp
+1 −1 src/nb_internals.h
+9 −2 src/nb_ndarray.cpp
+11 −10 src/nb_type.cpp
+21 −2 src/stubgen.py
+3 −0 tests/py_stub_test.py
+3 −0 tests/py_stub_test.pyi
+3 −0 tests/py_stub_test.pyi.ref
+1 −1 tests/test_classes.cpp
+4 −3 tests/test_classes.py
+1 −1 tests/test_classes_ext.pyi.ref
+17 −0 tests/test_eigen.cpp
+20 −0 tests/test_eigen.py
+3 −1 tests/test_enum.cpp
+2 −0 tests/test_enum.py
+5 −0 tests/test_enum_ext.pyi.ref
+10 −0 tests/test_functions.cpp
+40 −0 tests/test_functions.py
+16 −0 tests/test_functions_ext.pyi.ref
+7 −0 tests/test_issue.cpp
+95 −1 tests/test_ndarray.cpp
+129 −1 tests/test_ndarray.py
+26 −0 tests/test_ndarray_ext.pyi.ref
+23 −0 tests/test_typing.cpp
+3 −0 tests/test_typing_ext.pyi.ref

0 comments on commit 02cf5c8

Please sign in to comment.