Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pybind11: update to 2.11.1 #740

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion CMake/fletch-tarballs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ list(APPEND fletch_external_sources Darknet)
# pybind11
if (fletch_ENABLE_pybind11 OR fletch_ENABLE_ALL_PACKAGES)
set(pybind11_SELECT_VERSION 2.5.0 CACHE STRING "Select the version of pybind11 to build.")
set_property(CACHE pybind11_SELECT_VERSION PROPERTY STRINGS "2.5.0" "2.10.3")
set_property(CACHE pybind11_SELECT_VERSION PROPERTY STRINGS "2.5.0" "2.10.3" "2.11.1")
endif()

set(pybind11_version ${pybind11_SELECT_VERSION})
Expand All @@ -571,6 +571,8 @@ if (pybind11_version VERSION_EQUAL 2.5.0)
set(pybind11_md5 "1ad2c611378fb440e8550a7eb6b31b89" )
elseif (pybind11_version VERSION_EQUAL 2.10.3)
set(pybind11_md5 "a093dac9dfd613a5a7c2afa50a301098" )
elseif (pybind11_version VERSION_EQUAL 2.11.1)
set(pybind11_md5 "49e92f92244021912a56935918c927d0" )
elseif(pybind11_version)
message(ERROR "pybind11 Version ${pybind11_version} Not Supported")
endif()
Expand Down