== is the default operator
This commit is contained in:
parent
9074906c20
commit
444d868839
|
@ -295,6 +295,8 @@ Requires-Dist (multiple use)
|
|||
version numbers, separated by commas. Conditional operators
|
||||
must be one of "<", ">", "<=", ">=", "==", and "!=". Version
|
||||
numbers must be in the format specified in `PEP 386`_.
|
||||
If no operator is provided with a version, the "==" operator
|
||||
is used by default.
|
||||
|
||||
Any number of conditional operators can be specified, e.g.
|
||||
the string ">1.0, !=1.3.4, <2.0" is a legal version declaration.
|
||||
|
@ -359,7 +361,8 @@ Requires-Python
|
|||
guaranteed to be compatible with. The format of the field is a
|
||||
series of conditional operators and version numbers, separated
|
||||
by commas. Conditional operators must be one of "<", ">", "<=",
|
||||
">=", "==", and "!=".
|
||||
">=", "==", and "!=". If no operator is provided with a version,
|
||||
the "==" operator is used by default.
|
||||
|
||||
Version numbers must be in the format specified in `PEP 386`_.
|
||||
|
||||
|
@ -370,7 +373,7 @@ Requires-Python
|
|||
|
||||
Requires-Python: >2.1
|
||||
Requires-Python: >=2.3.4
|
||||
|
||||
Requires-Python: 2.5, 2.6
|
||||
|
||||
Requires-External (multiple use)
|
||||
Each entry contains a string describing some dependency in the
|
||||
|
|
Loading…
Reference in New Issue