diff --git a/CHANGELOG.md b/CHANGELOG.md index e44f7b8e..65a45c97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Changes added for GCHP] ### Changed +- Disabled f2py in GCHP ### Fixed diff --git a/python/esma_python.cmake b/python/esma_python.cmake index 4b3a616f..9964c81b 100644 --- a/python/esma_python.cmake +++ b/python/esma_python.cmake @@ -1,12 +1,14 @@ # CMake code involving Python -list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/f2py2") -include (esma_find_python2_module) -include (esma_check_python2_module) -include (esma_add_f2py2_module) -list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/f2py3") -include (esma_find_python3_module) -include (esma_check_python3_module) -include (esma_add_f2py3_module) +# Exclude the following from GCHP +#list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/f2py2") +#include (esma_find_python2_module) +#include (esma_check_python2_module) +#include (esma_add_f2py2_module) +#list (APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/f2py3") +#include (esma_find_python3_module) +#include (esma_check_python3_module) +#include (esma_add_f2py3_module) -option(USE_F2PY "Turn on F2PY builds" ON) +# Turn off F2PY builds in GCHP +option(USE_F2PY "Turn on F2PY builds" OFF)