Fædon
Fædon
@eguiraud I have for example this which works: In `WORKSPACE`: ``` git_repository( name = "pybind11_protobuf", commit = "b4a2e87a10cd5f6309e4ff67c040a470d7ec2373", remote = "https://github.com/pybind/pybind11_protobuf.git", ) ``` In `MODULE.bazel`: ``` bazel_dep(name = "pybind11_bazel", version...
I'm running into the same problem, on Ubuntu and Miniconda with a python3.8 workspace, trying to use the toy example from the tutorial at https://pybind11.readthedocs.io/en/latest/basics.html#creating-bindings-for-a-simple-function . "bazel run pybind_example" fails...
Thanks Ralf, I do see that the shared libraries have compiled successfully -- both the ones generated by pybind_library, and the ones from pybind_extension which are supposed to be able...