Update docs for tilde-equals in package versions

This commit is contained in:
Ryan Rozario
2023-04-12 18:34:29 +00:00
committed by GitHub
parent babd428d8e
commit 8b225737d3
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -8,9 +8,9 @@ You can specify versions of a package using the [Semantic Versioning scheme](htt
For example, to install requests you can use:
$ pipenv install requests~=1.2
$ pipenv install requests~=1.1
Pipenv will install version `1.2` and any minor update, but not `2.0`.
Pipenv will install version `1.2` as it is a minor update, but not `2.0`.
This will update your `Pipfile` to reflect this requirement, automatically.