diff options
author | George Hartzell <hartzell@alerce.com> | 2020-11-30 08:28:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-30 10:28:07 -0600 |
commit | bb9f5d613cc6e1796222d164aacb17adc622d28f (patch) | |
tree | 2b2c1b5a5d7cd1b9f7c5f6d4198040b37bd29118 | |
parent | 868dbb24c117d719702a928f1e068508a9120264 (diff) | |
download | spack-bb9f5d613cc6e1796222d164aacb17adc622d28f.tar.gz spack-bb9f5d613cc6e1796222d164aacb17adc622d28f.tar.bz2 spack-bb9f5d613cc6e1796222d164aacb17adc622d28f.tar.xz spack-bb9f5d613cc6e1796222d164aacb17adc622d28f.zip |
Typos: add missing closing parens (#20174)
-rw-r--r-- | lib/spack/docs/build_systems/pythonpackage.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spack/docs/build_systems/pythonpackage.rst b/lib/spack/docs/build_systems/pythonpackage.rst index c2da0281f0..ef06725e01 100644 --- a/lib/spack/docs/build_systems/pythonpackage.rst +++ b/lib/spack/docs/build_systems/pythonpackage.rst @@ -324,21 +324,21 @@ mentions that Python 3 is required, this can be specified as: .. code-block:: python - depends_on('python@3:', type=('build', 'run') + depends_on('python@3:', type=('build', 'run')) If Python 2 is required, this would look like: .. code-block:: python - depends_on('python@:2', type=('build', 'run') + depends_on('python@:2', type=('build', 'run')) If Python 2.7 is the only version that works, you can use: .. code-block:: python - depends_on('python@2.7:2.8', type=('build', 'run') + depends_on('python@2.7:2.8', type=('build', 'run')) The documentation may not always specify supported Python versions. |