Typos: add missing closing parens (#20174)

This commit is contained in:
George Hartzell 2020-11-30 08:28:07 -08:00 committed by GitHub
parent 868dbb24c1
commit bb9f5d613c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.