Skip to content

Commit

Permalink
ci: remove matrix:pip-version
Browse files Browse the repository at this point in the history
  • Loading branch information
b-kamphorst committed Oct 26, 2022
1 parent 5372005 commit 1cafa4c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down

0 comments on commit 1cafa4c

Please sign in to comment.