Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion 3rd-party/pympistandard
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ automake_min_version=1.13.4
autoconf_min_version=2.69.0
libtool_min_version=2.4.2
flex_min_version=2.5.4
python_min_version=3.7
python_min_version=3.6

# greek is generally used for alpha or beta release tags. If it is
# non-empty, it will be appended to the version number. It does not
Expand Down
8 changes: 8 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,11 @@ sphinx>=4.2.0
recommonmark
docutils
sphinx-rtd-theme

# These modules are needed for the pympistandard module when you are
# running Python 3.6 (they became part of core Python in 3.7). We
# specifically use "==" (vs. "<=") because the top-level Open MPI
# VERSION file lists Python 3.6 as the minimum required version of
# Python -- we will never be using < 3.6 to build the Open MPI docs.
importlib_resources; python_version == "3.6"
dataclasses; python_version == "3.6"