From 1cafa4c1bab61b6ac283c7bf656e21965882b7e1 Mon Sep 17 00:00:00 2001 From: Bart Kamphorst Date: Wed, 26 Oct 2022 17:41:46 +0200 Subject: [PATCH] ci: remove matrix:pip-version --- .github/workflows/python-package.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 9281e66..325dffb 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -13,7 +13,6 @@ jobs: strategy: matrix: python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] - pip-version: ['', '==21.2.4'] steps: - uses: actions/checkout@v2 @@ -23,7 +22,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip${{ matrix.pip-version }} + python -m pip install --upgrade pip if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi - name: Test with pytest run: |