Remove .99 from version ranges (#26422)

In most cases, .99 can be omitted thanks to #26402 .
This commit is contained in:
Harmen Stoppels
2021-10-03 15:09:02 +02:00
committed by GitHub
parent 2de116d285
commit b9e72557e8
606 changed files with 1796 additions and 1796 deletions

View File

@@ -336,7 +336,7 @@ This would be translated to:
.. code-block:: python
extends('python')
depends_on('python@3.5:3.999', type=('build', 'run'))
depends_on('python@3.5:3', type=('build', 'run'))
Many ``setup.py`` or ``setup.cfg`` files also contain information like::
@@ -568,7 +568,7 @@ check the ``METADATA`` file for lines like::
Lines that use ``Requires-Dist`` are similar to ``install_requires``.
Lines that use ``Provides-Extra`` are similar to ``extra_requires``,
and you can add a variant for those dependencies. The ``~=1.11.0``
syntax is equivalent to ``1.11.0:1.11.999``.
syntax is equivalent to ``1.11.0:1.11``.
""""""""""
setuptools

View File

@@ -2103,7 +2103,7 @@ correct way to specify this would be:
.. code-block:: python
depends_on('python@2.6.0:2.6.999')
depends_on('python@2.6.0:2.6')
A spec can contain multiple version ranges separated by commas.
For example, if you need Boost 1.59.0 or newer, but there are known