summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElias Müller <elias.mr1@gmail.com>2022-07-09 19:02:27 +0200
committerjaseg <136313+jaseg@users.noreply.github.com>2022-07-11 12:44:47 +0200
commitd027abcc3a1c193b661f24ba9ba3fde4889b9478 (patch)
treeb39b9b0d17e4e7f76935005cba60bbb27bfda548
parent9626d790f5e176255a350f5656b71a0e663bf1ca (diff)
downloadpython-mpv-d027abcc3a1c193b661f24ba9ba3fde4889b9478.tar.gz
python-mpv-d027abcc3a1c193b661f24ba9ba3fde4889b9478.tar.bz2
python-mpv-d027abcc3a1c193b661f24ba9ba3fde4889b9478.zip
Upgrade pip
-rw-r--r--.github/workflows/tests.yml5
1 files changed, 1 insertions, 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'