From d027abcc3a1c193b661f24ba9ba3fde4889b9478 Mon Sep 17 00:00:00 2001 From: Elias Müller Date: Sat, 9 Jul 2022 19:02:27 +0200 Subject: Upgrade pip --- .github/workflows/tests.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9fca786..5d61529 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,10 +26,6 @@ jobs: uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - - name: 'Install pip' - run: | - function execute() { echo -e "\033[0;34m$*\033[0m"; "$@"; } - execute python -m pip install --upgrade pip - name: 'Update Packages' run: | function execute() { echo -e "\033[0;34m$*\033[0m"; "$@"; } @@ -47,6 +43,7 @@ jobs: function execute() { echo -e "\033[0;34m$*\033[0m"; "$@"; } execute python -m venv venv execute source venv/bin/activate + execute python -m pip install --upgrade pip execute python -m pip install wheel execute python -m pip install -r tests/requirements.txt - name: 'Run Python Tests' -- cgit