From 4144092e5bbfa57430d717ed32f9fbb96f2c48a9 Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Mon, 14 Dec 2020 23:15:57 -0500 Subject: [PATCH] Fix description of the compatible-release operator --- docs/basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics.rst b/docs/basics.rst index e00c2258..56e9c535 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -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.