Commit d3921052 authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

update required dependency versions

1 merge request!1release v0.1.0.0
Showing with 8 additions and 3 deletions
+8 -3
...@@ -27,10 +27,13 @@ else() ...@@ -27,10 +27,13 @@ else()
#target_include_directories(evalhyd-python SYSTEM PRIVATE "${Python_NumPy_INCLUDE_DIRS}") #target_include_directories(evalhyd-python SYSTEM PRIVATE "${Python_NumPy_INCLUDE_DIRS}")
endif() endif()
find_package(xtensor REQUIRED) find_package(xtensor 0.7.5 REQUIRED)
message(STATUS "Found xtl: ${xtl_INCLUDE_DIRS}/xtl")
find_package(xtensor 0.24.6 REQUIRED)
message(STATUS "Found xtensor: ${xtensor_INCLUDE_DIRS}/xtensor") message(STATUS "Found xtensor: ${xtensor_INCLUDE_DIRS}/xtensor")
find_package(xtensor-python REQUIRED) find_package(xtensor-python 0.26.1 REQUIRED)
message(STATUS "Found xtensor-python: ${xtensor-python_INCLUDE_DIRS}/xtensor-python") message(STATUS "Found xtensor-python: ${xtensor-python_INCLUDE_DIRS}/xtensor-python")
find_package(pybind11 REQUIRED) find_package(pybind11 REQUIRED)
...@@ -40,7 +43,7 @@ if(DEFINED EVALHYD_SRC) ...@@ -40,7 +43,7 @@ if(DEFINED EVALHYD_SRC)
set(EVALHYD_BUILD_TEST OFF CACHE BOOL "configure and compile tests") set(EVALHYD_BUILD_TEST OFF CACHE BOOL "configure and compile tests")
add_subdirectory(${EVALHYD_SRC} deps/evalhyd) add_subdirectory(${EVALHYD_SRC} deps/evalhyd)
else() else()
find_package(EvalHyd REQUIRED) find_package(EvalHyd 0.1.0 REQUIRED)
endif() endif()
target_link_libraries( target_link_libraries(
......
...@@ -11,6 +11,8 @@ dependencies: ...@@ -11,6 +11,8 @@ dependencies:
- python - python
- numpy - numpy
- pybind11 - pybind11
- xtl==0.7.5
- xtensor==0.24.6
- xtensor-python==0.26.1 - xtensor-python==0.26.1
# - evalhyd-cpp==0.1.0 # - evalhyd-cpp==0.1.0
# Test dependencies # Test dependencies
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment