fixed the comma operator (it's AND)
This commit is contained in:
parent
b4784c9bdc
commit
ed118482b1
|
@ -359,7 +359,7 @@ Examples::
|
||||||
Requires-Python: 2.5
|
Requires-Python: 2.5
|
||||||
Requires-Python: >2.1
|
Requires-Python: >2.1
|
||||||
Requires-Python: >=2.3.4
|
Requires-Python: >=2.3.4
|
||||||
Requires-Python: 2.5, 2.6
|
Requires-Python: >=2.5,<2.7
|
||||||
|
|
||||||
|
|
||||||
Requires-External (multiple use)
|
Requires-External (multiple use)
|
||||||
|
@ -411,7 +411,7 @@ must be one of "<", ">", "<=", ">=", "==", "~=" and "!=".
|
||||||
|
|
||||||
Any number of conditional operators can be specified, e.g.
|
Any number of conditional operators can be specified, e.g.
|
||||||
the string ">1.0, !=1.3.4, <2.0" is a legal version declaration.
|
the string ">1.0, !=1.3.4, <2.0" is a legal version declaration.
|
||||||
The comma (",") is equivalent to the **or** operator.
|
The comma (",") is equivalent to the **and** operator.
|
||||||
|
|
||||||
Each version number must be in the format specified in PEP 386.
|
Each version number must be in the format specified in PEP 386.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue