Skip to content

Commit a48c4af

Browse files
authored
Use Pybind11 3.0.4 to build dpnp (#2865)
The PR updates CMakeLists.txt to bump pybind11 `3.0.4` up from `3.0.3` version.
1 parent 4ef8996 commit a48c4af

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
6060
* Moved all SYCL kernel functors from `backend/extensions/` to a unified `backend/kernels/` directory hierarchy [#2816](https://github.com/IntelPython/dpnp/pull/2816)
6161
* `dpnp` uses pybind11 3.0.3 [#2834](https://github.com/IntelPython/dpnp/pull/2834)
6262
* Disabled `dpnp.tensor` tests by default in `conda build --test` to prevent OOM failures during package testing. Set `SKIP_TENSOR_TESTS=0` to re-enable them on systems with enough memory [#2860](https://github.com/IntelPython/dpnp/pull/2860)
63+
* `dpnp` uses pybind11 3.0.4 [#2865](https://github.com/IntelPython/dpnp/pull/2865)
6364

6465
### Deprecated
6566

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ find_package(Python 3.10...<3.15 REQUIRED COMPONENTS Development.Module NumPy)
106106
include(FetchContent)
107107
FetchContent_Declare(
108108
pybind11
109-
URL https://github.com/pybind/pybind11/archive/refs/tags/v3.0.3.tar.gz
110-
URL_HASH SHA256=787459e1e186ee82001759508fefa408373eae8a076ffe0078b126c6f8f0ec5e
109+
URL https://github.com/pybind/pybind11/archive/refs/tags/v3.0.4.tar.gz
110+
URL_HASH SHA256=74b6a2c2b4573a400cafb6ecbf60c98df300cd3d0041296b913d02b2cbbb2676
111111
FIND_PACKAGE_ARGS NAMES pybind11
112112
)
113113
FetchContent_MakeAvailable(pybind11)

0 commit comments

Comments
 (0)