From 26074a07f00f1bf0a16de4cacea09a0dd3e08b7a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 24 Aug 2024 08:25:39 +0800 Subject: [PATCH] chore(deps): update dependency pybind11 to v2.13.5 (#822) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [pybind11](https://togithub.com/pybind/pybind11) | http_archive | patch | `v2.13.3` -> `v2.13.5` | --- ### Release Notes
pybind/pybind11 (pybind11) ### [`v2.13.5`](https://togithub.com/pybind/pybind11/releases/tag/v2.13.5): Version 2.13.5 [Compare Source](https://togithub.com/pybind/pybind11/compare/v2.13.4...v2.13.5) Bug fixes: - Fix includes when using Windows long paths (`\\?\` prefix). [#​5321](https://togithub.com/pybind/pybind11/issues/5321) - Support `-Wpedantic` in C++20 mode. [#​5322](https://togithub.com/pybind/pybind11/issues/5322) - Fix and test `` support for `py::tuple` and `py::list`. [#​5314](https://togithub.com/pybind/pybind11/issues/5314) ### [`v2.13.4`](https://togithub.com/pybind/pybind11/releases/tag/v2.13.4): Version 2.13.4 [Compare Source](https://togithub.com/pybind/pybind11/compare/v2.13.3...v2.13.4) Bug fixes: - Fix paths with spaces, including on Windows. (Replaces regression from [#​5302](https://togithub.com/pybind/pybind11/issues/5302)) [#​4874](https://togithub.com/pybind/pybind11/issues/4874) Documentation: - Remove repetitive words. [#​5308](https://togithub.com/pybind/pybind11/issues/5308) **Full Changelog**: https://github.com/pybind/pybind11/compare/v2.13.3...v2.13.4
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/secretflow/spu). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- bazel/repositories.bzl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl index b1fdec8a..fb4e6700 100644 --- a/bazel/repositories.bzl +++ b/bazel/repositories.bzl @@ -168,10 +168,10 @@ def _com_github_pybind11(): http_archive, name = "pybind11", build_file = "@pybind11_bazel//:pybind11.BUILD", - sha256 = "6e7a84ec241544f2f5e30c7a82c09c81f0541dd14e9d9ef61051e07105f9c445", - strip_prefix = "pybind11-2.13.3", + sha256 = "b1e209c42b3a9ed74da3e0b25a4f4cd478d89d5efbb48f04b277df427faf6252", + strip_prefix = "pybind11-2.13.5", urls = [ - "https://github.com/pybind/pybind11/archive/refs/tags/v2.13.3.tar.gz", + "https://github.com/pybind/pybind11/archive/refs/tags/v2.13.5.tar.gz", ], )