diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-08-29 09:34:48 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-08-29 09:48:31 +0300 |
commit | 6737d30d80fe4279cde2cad3d0434ec44951e44e (patch) | |
tree | 1686e3bf187ea5372fff9b0fe8204ed7b7589be4 /contrib | |
parent | 2240ca31a3fd158649669b539de0e31beb3761cb (diff) | |
download | ydb-6737d30d80fe4279cde2cad3d0434ec44951e44e.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/libs/pybind11/include/pybind11/detail/common.h | 6 | ||||
-rw-r--r-- | contrib/libs/pybind11/ya.make | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/contrib/libs/pybind11/include/pybind11/detail/common.h b/contrib/libs/pybind11/include/pybind11/detail/common.h index 66c9d3b578..3711116fad 100644 --- a/contrib/libs/pybind11/include/pybind11/detail/common.h +++ b/contrib/libs/pybind11/include/pybind11/detail/common.h @@ -11,11 +11,11 @@ #define PYBIND11_VERSION_MAJOR 2 #define PYBIND11_VERSION_MINOR 13 -#define PYBIND11_VERSION_PATCH 3 +#define PYBIND11_VERSION_PATCH 4 // Similar to Python's convention: https://docs.python.org/3/c-api/apiabiversion.html // Additional convention: 0xD = dev -#define PYBIND11_VERSION_HEX 0x020D0300 +#define PYBIND11_VERSION_HEX 0x020D0400 // Define some generic pybind11 helper macros for warning management. // @@ -602,7 +602,7 @@ enum class return_value_policy : uint8_t { object without taking ownership similar to the above return_value_policy::reference policy. In contrast to that policy, the function or property's implicit this argument (called the parent) is - considered to be the the owner of the return value (the child). + considered to be the owner of the return value (the child). pybind11 then couples the lifetime of the parent to the child via a reference relationship that ensures that the parent cannot be garbage collected while Python is still using the child. More advanced diff --git a/contrib/libs/pybind11/ya.make b/contrib/libs/pybind11/ya.make index d690d7c3e0..ba7ffe2d30 100644 --- a/contrib/libs/pybind11/ya.make +++ b/contrib/libs/pybind11/ya.make @@ -6,9 +6,9 @@ LICENSE(BSD-3-Clause) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(2.13.3) +VERSION(2.13.4) -ORIGINAL_SOURCE(https://github.com/pybind/pybind11/archive/v2.13.3.tar.gz) +ORIGINAL_SOURCE(https://github.com/pybind/pybind11/archive/v2.13.4.tar.gz) ADDINCL( GLOBAL contrib/libs/pybind11/include |