Skip to content

Commit

Permalink
DEP: Add support for Pybind11 v2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RUrlus committed Jan 13, 2022
1 parent 80b0c05 commit 41f2e2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ jobs:
strategy:
fail-fast: false
matrix:
armadillo: ["10.5.x", "10.7.x"]
pybind: ["v2.6.0", "v2.8.1"]
armadillo: ["10.6.x", "10.8.x"]
pybind: ["v2.6.0", "v2.9.0"]

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand Down
4 changes: 2 additions & 2 deletions cmake/GetPybind11.cmake
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
include(FetchContent)

SET(DEFAULT_PYBIND11_VERSION v2.8.1)
SET(DEFAULT_PYBIND11_VERSION v2.9.0)
IF (NOT USE_PYBIND11_VERSION)
MESSAGE(STATUS "carma: Setting Pybind11 version to '${DEFAULT_PYBIND11_VERSION}' as none was specified.")
SET(USE_PYBIND11_VERSION "${DEFAULT_PYBIND11_VERSION}" CACHE STRING "Choose the version of Pybind11." FORCE)
# Set the possible values of build type for cmake-gui
SET_PROPERTY(CACHE USE_PYBIND11_VERSION PROPERTY STRINGS
"v2.6.0" "v2.6.1" "v2.6.2" "v2.7.1" "v2.8.1"
"v2.6.0" "v2.6.1" "v2.6.2" "v2.7.1" "v2.8.1" "v2.9.0"
)
ENDIF ()

Expand Down

0 comments on commit 41f2e2e

Please sign in to comment.