Correct compatible release clause example

According to PEP 0440, ~= V.N is the same as >= V.N, == V.* , not >= V.N, == V.N.*

https://www.python.org/dev/peps/pep-0440/#compatible-release
This commit is contained in:
Tony Zhaocheng Tan 2016-03-01 21:01:11 -05:00
parent 01026756a4
commit acea08131b
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ Use ``pip install -r example-requirements.txt`` to install::
docopt == 0.6.1 # Version Matching. Must be version 0.6.1
keyring >= 4.1.1 # Minimum version 4.1.1
coverage != 3.5 # Version Exclusion. Anything except version 3.5
Mopidy-Dirble ~= 1.1 # Compatible release. Same as >= 1.1, == 1.1.*
Mopidy-Dirble ~= 1.1 # Compatible release. Same as >= 1.1, == 1.*
#
###### Refer to other requirements files ######
-r other-requirements.txt