Skip to content

Commit c73e472

Browse files
authored
Use Pybind11 3.0.2 to build dpnp (#2773)
The PR updates CMakeLists.txt to pull pybind11 `3.0.2` up from `3.0.1`.
1 parent ed23079 commit c73e472

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
5050
* Aligned `strides` property of `dpnp.ndarray` with NumPy and CuPy implementations [#2747](https://github.com/IntelPython/dpnp/pull/2747)
5151
* Extended `dpnp.nan_to_num` to support broadcasting of `nan`, `posinf`, and `neginf` keywords [#2754](https://github.com/IntelPython/dpnp/pull/2754)
5252
* Changed `dpnp.partition` implementation to reuse `dpnp.sort` where it brings the performance benefit [#2766](https://github.com/IntelPython/dpnp/pull/2766)
53+
* `dpnp` uses pybind11 3.0.2 [#27734](https://github.com/IntelPython/dpnp/pull/2773)
5354

5455
### Deprecated
5556

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ find_package(Python 3.10...<3.15 REQUIRED COMPONENTS Development.Module NumPy)
9595
include(FetchContent)
9696
FetchContent_Declare(
9797
pybind11
98-
URL https://github.com/pybind/pybind11/archive/refs/tags/v3.0.1.tar.gz
99-
URL_HASH SHA256=741633da746b7c738bb71f1854f957b9da660bcd2dce68d71949037f0969d0ca
98+
URL https://github.com/pybind/pybind11/archive/refs/tags/v3.0.2.tar.gz
99+
URL_HASH SHA256=2f20a0af0b921815e0e169ea7fec63909869323581b89d7de1553468553f6a2d
100100
FIND_PACKAGE_ARGS NAMES pybind11
101101
)
102102
FetchContent_MakeAvailable(pybind11)

0 commit comments

Comments
 (0)