Skip to content

Commit

Permalink
Temporarily Stop Updating pip (SatelliteQE#9341)
Browse files Browse the repository at this point in the history
* Temporarily Stop Updating pip

pip 22 is currently having issues with dependency installation (pypa/pip#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

* Temporarily disable pip in merge_to_master
  • Loading branch information
JacobCallahan authored Jan 31, 2022
1 parent 7fd02de commit c7b781c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge_to_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c7b781c

Please sign in to comment.