pybind11_abseil
pybind11_abseil copied to clipboard
Pybind11 bindings for the Abseil C++ Common Libraries
Hi, I am a packager for openSUSE and am trying to build RPM packages for `pybind11_abseil`. We found that we need a few changes to the cmake scripts to improve...
Using pybind11_abseil 202402.0, python 3.10, on 32-bit architecture, we see the following error when running `ctest` after building the library. I understand if 32 bit archs are not supported, but...
The issue can manifest itself in multiple ways. One of the most straightforward examples is that returning an `absl::Status` with a payload from C++ to Python can cause the process...
I am using pybind11_abseil with pybind11_bazel. I recently updated pybind11_abseil to `HEAD` and was surprised when my tests failed trying to `import pybind11_absil.status`. It took some time to track down...
If a super build project use `set(ABSL_ENABLE_INSTALL ON)` or modify the pybind11_abseil CMakelists.txt as fallow ```diff diff --git a/CMakeLists.txt b/CMakeLists.txt index ceb65a8..4f4ed9c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,8 +19,11...
[Nanobind](https://github.com/wjakob/nanobind) looks fairly stable at this point. I recently got nanobind to work with my various Bazel projects and considering doing a port. Are there any plans to release a...
Hi, I am trying to figure out some issues with using the pybind11_abseil.status usage. TensorFlow as well as some other Google projects are using the pybind11_abseil modules. I found that...
It appears that `pybind11_abseil` uses deprecated types. ie. `Breakdown`, `From_Datetime`. Will/when will this be updated? These issues seem to appear even when using the `20230802.0` tag of abseil-cpp as specified...
as the header
When trying to specify a py::arg with C++ type absl::Span (or more specifically in my case absl::optional), I get an compile error: ./third_party/pybind11_abseil/absl_casters.h:378:12: error: no matching function for call to...