Fix description of the compatible-release operator

This commit is contained in:
Deepyaman Datta
2020-12-14 23:15:57 -05:00
committed by GitHub
parent 48e1f18930
commit 4144092e5b
+1 -1
View File
@@ -216,7 +216,7 @@ To make inclusive or exclusive version comparisons you can use: ::
The use of ``~=`` is preferred over the ``==`` identifier as the latter prevents pipenv from updating the packages: ::
$ pipenv install "requests~=2.2" # locks the major version of the package (this is equivalent to using ==2.*)
$ pipenv install "requests~=2.2" # locks the major version of the package (this is equivalent to using >=2.2, ==2.*)
To avoid installing a specific version you can use the ``!=`` identifier.