1. 28 Feb, 2024 2 commits
  2. 23 Feb, 2024 1 commit
  3. 22 Feb, 2024 1 commit
  4. 20 Feb, 2024 2 commits
  5. 16 Feb, 2024 2 commits
  6. 15 Feb, 2024 2 commits
  7. 24 Jan, 2024 2 commits
  8. 10 Jan, 2024 1 commit
  9. 09 Jan, 2024 5 commits
  10. 08 Jan, 2024 1 commit
  11. 03 Jan, 2024 1 commit
  12. 12 Dec, 2023 1 commit
  13. 06 Nov, 2023 1 commit
  14. 31 Oct, 2023 1 commit
  15. 20 Oct, 2023 2 commits
  16. 18 Oct, 2023 1 commit
    • Update abseil-cpp version in top_level_CMakeLists.txt to restore testing. · 6c181d3d
      It is unclear what exactly broke testing with the standard command:
      
      ```
      ./scripts/google_run_tests.sh --make_jobs=48
      ```
      
      ```
      /usr/local/google/home/rwgk/tmp/pybind11_abseil/tmp_build/_deps/abseil-cpp-src/absl/strings/internal/str_format/extension.h:34:6: warning: elaborated-type-specifier for a scoped enum must not use the ‘class’ keyword
         34 | enum class FormatConversionChar : uint8_t;
            | ~~~~ ^~~~~
            |      -----
      /usr/local/google/home/rwgk/tmp/pybind11_abseil/tmp_build/_deps/abseil-cpp-src/absl/strings/internal/str_format/extension.h:34:33: error: found ‘:’ in nested-name-specifier, expected ‘::’
         34 | enum class FormatConversionChar : uint8_t;
            |                                 ^
            |                                 ::
      ```
      
      Updating abseil-cpp to the same version as used in the bazel WORKSPACE file fixes the cmake build failures.
      
      PiperOrigin-RevId: 574639457
      Ralf W. Grosse-Kunstleve committed
  17. 10 Oct, 2023 1 commit
  18. 25 Sep, 2023 1 commit
  19. 06 Sep, 2023 2 commits
  20. 18 Aug, 2023 1 commit
  21. 17 Aug, 2023 1 commit
  22. 15 Aug, 2023 2 commits
  23. 11 Aug, 2023 2 commits
    • Copy pybind11_protobuf/.pre-commit-config.yaml to pybind11_abseil/.pre-commit-config.yaml · 41f3de4d
      This is to help with whitespace cleanup in the cmake files currently under development under https://github.com/pybind/pybind11_abseil/pull/7
      
      PiperOrigin-RevId: 556026304
      Ralf W. Grosse-Kunstleve committed
    • Resolve pybind11 deprecation warning. · e01527cd
      Observed while locally testing https://github.com/pybind/pybind11_abseil/pull/7:
      
      ```
      In file included from /usr/local/google/home/rwgk/forked/pybind11_abseil/pybind11_abseil/tests/absl_example.cc:23:
      /usr/local/google/home/rwgk/forked/pybind11_abseil/pybind11_abseil/absl_casters.h: In member function ‘bool pybind11::detail::type_caster<absl::lts_20211102::Duration>::load(pybind11::handle, bool)’:
      /usr/local/google/home/rwgk/forked/pybind11_abseil/pybind11_abseil/absl_casters.h:194:48: warning: ‘bool pybind11::handle::operator==(const pybind11::handle&) const’ is deprecated: Use obj1.is(obj2) instead [-Wdeprecated-declarations]
        194 |     if (src == object(py_duration_t.attr("max"))) {
            |                                                ^
      In file included from /usr/local/google/home/rwgk/forked/pybind11_abseil/tmp_build/_deps/pybind11-src/include/pybind11/detail/type_caster_base.h:12,
                       from /usr/local/google/home/rwgk/forked/pybind11_abseil/tmp_build/_deps/pybind11-src/include/pybind11/cast.h:15,
                       from /usr/local/google/home/rwgk/forked/pybind11_abseil/tmp_build/_deps/pybind11-src/include/pybind11/attr.h:14,
                       from /usr/local/google/home/rwgk/forked/pybind11_abseil/tmp_build/_deps/pybind11-src/include/pybind11/detail/class.h:1,
                       from /usr/local/google/home/rwgk/forked/pybind11_abseil/tmp_build/_deps/pybind11-src/include/pybind11/pybind11.h:13,
                       from /usr/local/google/home/rwgk/forked/pybind11_abseil/tmp_build/_deps/pybind11-src/include/pybind11/complex.h:12,
                       from /usr/local/google/home/rwgk/forked/pybind11_abseil/pybind11_abseil/tests/absl_example.cc:6:
      /usr/local/google/home/rwgk/forked/pybind11_abseil/tmp_build/_deps/pybind11-src/include/pybind11/pytypes.h:290:10: note: declared here
        290 |     bool operator==(const handle &h) const { return m_ptr == h.m_ptr; }
            |          ^~~~~~~~
      ```
      
      PiperOrigin-RevId: 555974032
      Ralf W. Grosse-Kunstleve committed
  24. 09 Aug, 2023 1 commit
  25. 04 Aug, 2023 1 commit
  26. 31 Jul, 2023 2 commits