mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Merge branch 'master' into bugfix/4549
This commit is contained in:
+1
-1
@@ -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.
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
Fix description of the compatible-release operator
|
||||
Reference in New Issue
Block a user