Merge branch 'master' into bugfix/4549

This commit is contained in:
Frost Ming
2021-01-19 19:13:51 -06:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+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.
+1
View File
@@ -0,0 +1 @@
Fix description of the compatible-release operator