File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
13
13
### Changed
14
14
15
+ * Silenced ` pybind11 ` CMake message due to using compatibility mode for Python [ #2614 ] ( https://github.com/IntelPython/dpnp/pull/2614 )
16
+
15
17
### Deprecated
16
18
17
19
### Removed
Original file line number Diff line number Diff line change @@ -49,6 +49,9 @@ endif()
49
49
50
50
include (GNUInstallDirs)
51
51
52
+ # find Python before enabling pybind11
53
+ find_package (Python REQUIRED COMPONENTS Development.Module NumPy)
54
+
52
55
# Fetch pybind11
53
56
include (FetchContent)
54
57
FetchContent_Declare(
@@ -59,8 +62,6 @@ FetchContent_Declare(
59
62
)
60
63
FetchContent_MakeAvailable(pybind11)
61
64
62
- find_package (Python REQUIRED COMPONENTS Development.Module NumPy)
63
-
64
65
set (CYTHON_FLAGS "-t -w \" ${CMAKE_SOURCE_DIR} \" " )
65
66
find_package (Cython REQUIRED)
66
67
You can’t perform that action at this time.
0 commit comments