From 4144092e5bbfa57430d717ed32f9fbb96f2c48a9 Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Mon, 14 Dec 2020 23:15:57 -0500 Subject: [PATCH 1/2] 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. From cdf70677c87a9db6be585c2eb46407f981bbffa7 Mon Sep 17 00:00:00 2001 From: Deepyaman Datta Date: Mon, 14 Dec 2020 23:21:05 -0500 Subject: [PATCH 2/2] Create 4568.trivial.rst --- news/4568.trivial.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/4568.trivial.rst diff --git a/news/4568.trivial.rst b/news/4568.trivial.rst new file mode 100644 index 00000000..4f325a88 --- /dev/null +++ b/news/4568.trivial.rst @@ -0,0 +1 @@ +Fix description of the compatible-release operator