Skip to content

Commit 7c0c6a7

Browse files
authored
Merge branch 'master' into enable_3.14
2 parents 94ce1a8 + da3cac3 commit 7c0c6a7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
2323

2424
* Silenced `pybind11` CMake message due to using compatibility mode for Python [#2614](https://github.com/IntelPython/dpnp/pull/2614)
2525
* Changed the license from `BSD-2-Clause` to `BSD-3-Clause` [#2593](https://github.com/IntelPython/dpnp/pull/2593)
26+
* Defined explicit versions range of the Python interpreter which is needed during the build [#2634](https://github.com/IntelPython/dpnp/pull/2634)
2627

2728
### Deprecated
2829

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ endif()
7979
include(GNUInstallDirs)
8080

8181
# find Python before enabling pybind11
82-
find_package(Python REQUIRED COMPONENTS Development.Module NumPy)
82+
find_package(Python 3.10...<3.15 REQUIRED COMPONENTS Development.Module NumPy)
8383

8484
# Fetch pybind11
8585
include(FetchContent)

0 commit comments

Comments
 (0)