Squashed 'wrap/' changes from 09f8bbf71..186ed2c79

186ed2c79 Merge pull request #26 from borglab/fix/required
9af1b8f09 unmake python cmake package as required

git-subtree-dir: wrap
git-subtree-split: 186ed2c792f80bbd315e747ef8622f8355c626f6
release/4.3a0
Varun Agrawal 2021-01-12 20:45:43 -05:00
parent 7cc7232a99
commit e9080bf885
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ install(DIRECTORY pybind11 TYPE LIB)
find_package(
Python ${WRAP_PYTHON_VERSION}
COMPONENTS Interpreter
REQUIRED)
EXACT)
# Detect virtualenv and set Pip args accordingly
# https://www.scivision.dev/cmake-install-python-package/

View File

@ -68,7 +68,7 @@ macro(gtwrap_get_python_version WRAP_PYTHON_VERSION)
find_package(
Python ${WRAP_PYTHON_VERSION}
COMPONENTS Interpreter Development
EXACT REQUIRED)
EXACT)
endif()
endmacro()