Skip to content

Commit ef24fbc

Browse files
committed
Release 0.14.0
1 parent bf326d0 commit ef24fbc

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CMakeLists.txt

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@ set(${PROJECT_NAME}_VERSION
2828
${XTENSOR_PYTHON_VERSION_MAJOR}.${XTENSOR_PYTHON_VERSION_MINOR}.${XTENSOR_PYTHON_VERSION_PATCH})
2929
message(STATUS "xtensor-python v${${PROJECT_NAME}_VERSION}")
3030

31+
# Dependencies
32+
# ============
33+
34+
find_package(xtl REQUIRED)
35+
message(STATUS "Found xtl: ${xtl_INCLUDE_DIRS}/xtl")
36+
find_package(xtensor REQUIRED)
37+
message(STATUS "Found xtensor: ${xtensor_INCLUDE_DIRS}/xtensor")
38+
find_package(pybind11 REQUIRED)
39+
message(STATUS "Found pybind11: ${pybind11_INCLUDE_DIRS}/pybind11")
40+
find_package(NumPy REQUIRED)
41+
message(STATUS "Found numpy: ${NUMPY_INCLUDE_DIRS}")
42+
3143
# Build
3244
# =====
3345

@@ -50,12 +62,9 @@ endif()
5062

5163
if(BUILD_TESTS)
5264
include_directories(${XTENSOR_PYTHON_INCLUDE_DIR})
53-
find_package(xtensor REQUIRED)
65+
include_directories(${xtl_INCLUDE_DIRS})
5466
include_directories(${xtensor_INCLUDE_DIRS})
55-
find_package(NumPy REQUIRED)
5667
include_directories(${NUMPY_INCLUDE_DIRS})
57-
58-
find_package(pybind11 REQUIRED)
5968
include_directories(${pybind11_INCLUDE_DIRS})
6069

6170
if(MSVC)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ from the `docs` subdirectory.
190190
| `xtensor-python` | `xtensor` | `pybind11` |
191191
|-------------------|------------|-------------|
192192
| master | ^0.12.0 | ^2.1.0 |
193+
| 0.14.x | ^0.12.0 | ^2.1.0 |
193194
| 0.13.x | ^0.11.0 | ^2.1.0 |
194195
| 0.12.x | ^0.10.2 | 2.1.\* |
195196
| 0.11.x | ^0.10.0 | 2.1.\* |

include/xtensor-python/xtensor_python_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#define XTENSOR_PYTHON_CONFIG_HPP
1111

1212
#define XTENSOR_PYTHON_VERSION_MAJOR 0
13-
#define XTENSOR_PYTHON_VERSION_MINOR 13
13+
#define XTENSOR_PYTHON_VERSION_MINOR 14
1414
#define XTENSOR_PYTHON_VERSION_PATCH 0
1515

1616
#endif

0 commit comments

Comments
 (0)