From 2ec243961b88b6572656c64b46cc5a64fc41ab10 Mon Sep 17 00:00:00 2001 From: Jeff Widman Date: Thu, 3 Aug 2023 10:31:08 -0700 Subject: [PATCH] `pip` no longer requires a range The range was specified because newer versions of `pip` don't support `python` `3.6`. So now that we've dropped support for `3.6` here in Dependabot, we can go back to pinning to a single version. --- python/helpers/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/helpers/requirements.txt b/python/helpers/requirements.txt index 24e14ca79b9..98528c79702 100644 --- a/python/helpers/requirements.txt +++ b/python/helpers/requirements.txt @@ -1,4 +1,4 @@ -pip>=21.3.1,<23.3.0 # Range maintains py36 support TODO: Review python 3.6 support in April 2023 (eol ubuntu 18.04) +pip==23.2.0 pip-tools==7.2.0 hashin==0.17.0 pipenv==2022.4.8