From 536dcceb0d38b57fffe47ed58364e88c6491dab7 Mon Sep 17 00:00:00 2001 From: Jacob Callahan Date: Mon, 31 Jan 2022 09:49:45 -0500 Subject: [PATCH] Temporarily Stop Updating pip pip 22 is currently having issues with dependency installation (https://github.com/pypa/pip/issues/10851) until it is resolved, we should disable explicit updating. if it takes longer to resolve, then we may need to explicitly enforce pip 21.3.1 --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 6f4d1e73859..dcfe4ac4ad4 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -32,7 +32,7 @@ jobs: # link vs compile time ssl implementations can break the environment when installing requirements # Uninstall pycurl - its likely not installed, but in case the ubuntu-latest packages change # Then compile and install it with PYCURL_SSL_LIBRARY set to openssl - pip install -U pip + # pip install -U pip pip uninstall -y pycurl pip install --compile --no-cache-dir pycurl pip install -U -r requirements.txt -r requirements-optional.txt