Simplify PEP 508 examples (#1604)

This commit is contained in:
Laurie O 2020-09-18 16:50:37 +00:00 committed by GitHub
parent bc64e01474
commit ea8b7737b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -518,7 +518,7 @@ Version Constrained Dependencies
.. code-block::
aiohttp (>= 3.6.2, < 4.0.0)
aiohttp >= 3.6.2, < 4.0.0
.. code-block::
@ -567,7 +567,7 @@ Environment Markers
.. code-block::
aiohttp (>= 3.6.1) ; python_version >= '3.8'
aiohttp >= 3.6.1; python_version >= '3.8'
.. code-block::
@ -579,8 +579,8 @@ A slightly extended example of the above, where a particular version of ``aiohtt
.. code-block::
aiohttp (>= 3.6.1) ; python_version >= '3.8'
aiohttp (>= 3.0.0, < 3.6.1) ; python_version < '3.8'
aiohttp >= 3.6.1; python_version >= '3.8'
aiohttp >= 3.0.0, < 3.6.1; python_version < '3.8'
.. code-block::
@ -598,7 +598,7 @@ Package Extras
.. code-block::
aiohttp (>= 3.6.2) ; extra == 'http'
aiohttp >= 3.6.2; extra == 'http'
.. code-block::
@ -609,7 +609,7 @@ Package Extras
.. code-block::
aiohttp [speedups] (>= 3.6.2)
aiohttp [speedups] >= 3.6.2
.. code-block::
@ -624,7 +624,7 @@ Complex Examples
.. code-block::
aiohttp [speedups] (>=3.6.2) ; python_version >= '3.8' and extra == 'http'
aiohttp [speedups] >= 3.6.2; python_version >= '3.8' and extra == 'http'
.. code-block::