From 2ac58e007a99bc85057791725b22bf004fa4e0a6 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Wed, 5 Oct 2022 18:42:32 +0100 Subject: [PATCH] Always use latest version of `pip`. (#2396) Installation should start by updating `pip` to the latest version. Resolves issue noted in https://github.com/encode/httpx/pull/2334#issuecomment-1268308195 --- scripts/install | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install b/scripts/install index 65885a72..f98bbfca 100755 --- a/scripts/install +++ b/scripts/install @@ -15,5 +15,6 @@ else PIP="pip" fi +"$PIP" install -U pip "$PIP" install -r "$REQUIREMENTS" "$PIP" install -e . -- 2.47.3