-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #680 from LLNL/v0.6.1-rc
V0.6.1 rc
- Loading branch information
Showing
5 changed files
with
63 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
numpy == 1.22 | ||
scipy == 1.5.4 | ||
scipy == 1.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
thirdparty_builtin/patches/gtest-2024-01-23-turn-off-find-python.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
diff --git a/thirdparty_builtin/googletest/googletest/cmake/internal_utils.cmake b/thirdparty_builtin/googletest/googletest/cmake/internal_utils.cmake | ||
index fa7da4e..6ddb794 100644 | ||
--- a/thirdparty_builtin/googletest/googletest/cmake/internal_utils.cmake | ||
+++ b/thirdparty_builtin/googletest/googletest/cmake/internal_utils.cmake | ||
@@ -260,16 +260,22 @@ if (POLICY CMP0094) | ||
cmake_policy(SET CMP0094 NEW) | ||
endif() | ||
|
||
-# Sets PYTHONINTERP_FOUND and PYTHON_EXECUTABLE. | ||
-if ("${CMAKE_VERSION}" VERSION_LESS "3.12.0") | ||
- find_package(PythonInterp) | ||
- set(PYTHONINTERP_FOUND ${PYTHONINTERP_FOUND} CACHE INTERNAL "") | ||
- set(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE} CACHE INTERNAL "") | ||
-else() | ||
- find_package(Python COMPONENTS Interpreter) | ||
- set(PYTHONINTERP_FOUND ${Python_Interpreter_FOUND} CACHE INTERNAL "") | ||
- set(PYTHON_EXECUTABLE ${Python_EXECUTABLE} CACHE INTERNAL "") | ||
-endif() | ||
+#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
+# BLT CHANGE | ||
+#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
+# Avoid finding Python. | ||
+#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
+# # Sets PYTHONINTERP_FOUND and PYTHON_EXECUTABLE. | ||
+# if ("${CMAKE_VERSION}" VERSION_LESS "3.12.0") | ||
+# find_package(PythonInterp) | ||
+# set(PYTHONINTERP_FOUND ${PYTHONINTERP_FOUND} CACHE INTERNAL "") | ||
+# set(PYTHON_EXECUTABLE ${PYTHON_EXECUTABLE} CACHE INTERNAL "") | ||
+# else() | ||
+# find_package(Python COMPONENTS Interpreter) | ||
+# set(PYTHONINTERP_FOUND ${Python_Interpreter_FOUND} CACHE INTERNAL "") | ||
+# set(PYTHON_EXECUTABLE ${Python_EXECUTABLE} CACHE INTERNAL "") | ||
+# endif() | ||
+#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
|
||
# cxx_test_with_flags(name cxx_flags libs srcs...) | ||
# |