Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/internal/FetchGoogletest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function(fetch_googletest)
FetchContent_Declare(
googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG v1.16.0
GIT_TAG v1.17.x
)
FetchContent_MakeAvailable(googletest)
endfunction()
2 changes: 1 addition & 1 deletion cmake/public/gridtools_setup_targets.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ macro(_gt_setup_targets _config_mode clang_cuda_mode)
_gt_add_library(${_config_mode} fn_naive)
target_link_libraries(${_gt_namespace}fn_naive INTERFACE ${_gt_namespace}gridtools)

set(_required_nlohmann_json_version "3.10.4")
set(_required_nlohmann_json_version "3.12.0")
include(get_nlohmann_json)
get_nlohmann_json(${_required_nlohmann_json_version})

Expand Down
2 changes: 1 addition & 1 deletion tests/regression/py_bindings/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include(FetchContent)
FetchContent_Declare(
pybind11
GIT_REPOSITORY https://github.com/pybind/pybind11.git
GIT_TAG v2.10.0
GIT_TAG v2.13.6
)

FetchContent_GetProperties(pybind11)
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/storage/adapter/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ if (${GT_TESTS_ENABLE_PYTHON_TESTS})
FetchContent_Declare(
nanobind
GIT_REPOSITORY https://github.com/wjakob/nanobind.git
GIT_TAG v2.1.0
GIT_TAG v2.9.2
)
FetchContent_MakeAvailable(nanobind)
nanobind_build_library(nanobind-static)
Expand Down
Loading