Skip to content
Merged
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 .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
strategy:
fail-fast: false
matrix:
armadillo: ["10.8.x", "11.4.x", "12.4.x", "12.6.x", "12.8.x", "14.4.x"]
armadillo: ["10.8.x", "11.4.x", "12.4.x", "12.6.x", "12.8.x", "14.4.x", "15.0.x"]
pybind: ["v2.12.0"]

steps:
Expand Down
4 changes: 2 additions & 2 deletions cmake/GetArmadillo.cmake
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
include(FetchContent)

SET(DEFAULT_ARMA_VERSION 14.4.x)
SET(DEFAULT_ARMA_VERSION 15.0.x)
IF (NOT USE_ARMA_VERSION)
MESSAGE(STATUS "carma: Setting Armadillo version to 'v${DEFAULT_ARMA_VERSION}' as none was specified.")
SET(USE_ARMA_VERSION "${DEFAULT_ARMA_VERSION}" CACHE STRING "Choose the version of Armadillo." FORCE)
# Set the possible values of build type for cmake-gui
SET_PROPERTY(CACHE USE_ARMA_VERSION PROPERTY STRINGS
"10.6.x" "10.8.x" "11.2.x" "11.4.x" "12.4.x" "12.6.x" "12.8.x" "14.4.x"
"10.6.x" "10.8.x" "11.2.x" "11.4.x" "12.4.x" "12.6.x" "12.8.x" "14.4.x" "15.0.x"
)
ENDIF ()

Expand Down
2 changes: 1 addition & 1 deletion integration_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ENDIF ()

ADD_SUBDIRECTORY(extern/pybind11)

SET(USE_ARMA_VERSION 14.4.x)
SET(USE_ARMA_VERSION 15.0.x)
FetchContent_Declare(
CarmaArmadillo
GIT_REPOSITORY https://gitlab.com/conradsnicta/armadillo-code.git
Expand Down
Loading