-
Notifications
You must be signed in to change notification settings - Fork 21
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 #544 from LBL-EESA/develop
4.0.0 release
- Loading branch information
Showing
306 changed files
with
31,290 additions
and
6,797 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Please fill the following sections in as completely as possible. Please include all CMake output under `Additional information` when reporting build issues. | ||
|
||
**Description of the issue** | ||
... | ||
|
||
**Platform** | ||
| Field | Value | | ||
| ------------: | :------------------ | | ||
| HPC Center: | | | ||
| System name: | | | ||
| OS name/ver: | | | ||
| Compiler ver: | | | ||
| CMake ver: | | | ||
|
||
|
||
**Steps to Reproduce** | ||
... | ||
|
||
**Additional information** | ||
... |
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,3 +1,4 @@ | ||
*.sw[a-z] | ||
*.patch | ||
_build | ||
*.pt |
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,13 @@ | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
version: 2 | ||
|
||
sphinx: | ||
configuration: doc/rtd/conf.py | ||
|
||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: doc/rtd/requirements.txt |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#***************************************************************************** | ||
# FindMatplotlib | ||
# | ||
# Check if matplotlib is installed and configure c-api includes | ||
# | ||
# This module defines | ||
# Matplotlib_FOUND, set TRUE if matplotlib and c-api are available | ||
# Matplotlib_VERSION, matplotlib release version | ||
|
||
set(_TMP_PY_OUTPUT) | ||
set(_TMP_PY_RETURN) | ||
exec_program("${PYTHON_EXECUTABLE}" | ||
ARGS "-c 'import matplotlib; print(matplotlib.__version__)'" | ||
OUTPUT_VARIABLE _TMP_PY_OUTPUT | ||
RETURN_VALUE _TMP_PY_RETURN) | ||
set(Matplotlib_VERSION_FOUND FALSE) | ||
if(NOT _TMP_PY_RETURN) | ||
set(Matplotlib_VERSION_FOUND TRUE) | ||
else() | ||
set(_TMP_PY_OUTPUT) | ||
endif() | ||
set(Matplotlib_VERSION "${_TMP_PY_OUTPUT}") | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Matplotlib DEFAULT_MSG Matplotlib_VERSION_FOUND) |
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
Oops, something went wrong.