From 4042967437404ed35b9f729007a1e77411b7bec3 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sun, 17 Oct 2021 18:43:15 +0200 Subject: [PATCH] Unpin pip to support 20.04 --- .github/workflows/unit-test.yaml | 2 +- bootstrap/bootstrap.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit-test.yaml b/.github/workflows/unit-test.yaml index 7be8bc6..04cff1b 100644 --- a/.github/workflows/unit-test.yaml +++ b/.github/workflows/unit-test.yaml @@ -84,7 +84,7 @@ jobs: - name: Install Python dependencies run: | - python3 -m pip install -U pip==20.0.* + python3 -m pip install -U pip python3 -m pip install -r dev-requirements.txt python3 -m pip install -e . pip freeze diff --git a/bootstrap/bootstrap.py b/bootstrap/bootstrap.py index 4eb718c..563138a 100644 --- a/bootstrap/bootstrap.py +++ b/bootstrap/bootstrap.py @@ -335,7 +335,7 @@ def main(): # Upgrade pip logger.info('Upgrading pip...') - run_subprocess([pip_bin, 'install', '--upgrade', 'pip==20.0.*']) + run_subprocess([pip_bin, 'install', '--upgrade', 'pip']) # Install/upgrade TLJH installer