Skip to content

Commit b2e18c4

Browse files
committed
Try to fix GitHub actions workflow
1 parent fb3bbf7 commit b2e18c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
python-version: [3.6, 3.7, 3.8]
1918
# These versions match the minimum and maximum versions of pip in
2019
# requirements.txt
2120
extra-pip-version-to-install: ['==10.0.1', '<= 19']
21+
python-version: [3.6, 3.7, 3.8]
2222

2323
steps:
2424
- uses: actions/checkout@v2
@@ -30,7 +30,7 @@ jobs:
3030
- name: "Install dependencies"
3131
run: |
3232
pip install --upgrade --editable .[dev]
33-
pip install --upgrade pip ${{extra-pip-version-to-install}}
33+
pip install --upgrade 'pip ${{ extra-pip-version-to-install }}'
3434
pip install flake8
3535
3636
- name: "Lint"

0 commit comments

Comments
 (0)