Skip to content

Commit 604949a

Browse files
authored
fix: Add missing pip update and remove pypy3.7 (#82)
1 parent effda06 commit 604949a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci-tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7", "pypy3.8", "pypy3.9" ]
30+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.8", "pypy3.9" ]
3131
poetry-version: [ "latest" ]
3232
os: [ ubuntu-20.04, macos-latest, windows-latest ]
3333
runs-on: ${{ matrix.os }}
@@ -44,6 +44,9 @@ jobs:
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646
cache: 'pip'
47+
- name: Update pip
48+
run: |
49+
python -m pip install --upgrade pip
4750
- name: Run Poetry action
4851
uses: abatilo/actions-poetry@v2
4952
with:

0 commit comments

Comments
 (0)