We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fb67c5 commit 6247cc2Copy full SHA for 6247cc2
.github/workflows/ci.yml
@@ -16,6 +16,9 @@ jobs:
16
strategy:
17
matrix:
18
python-version: [3.6, 3.7, 3.8]
19
+ # These versions match the minimum and maximum versions of pip in
20
+ # requirements.txt
21
+ extra-pip-version-to-install: ['==10.0.1', '<= 19']
22
23
steps:
24
- uses: actions/checkout@v2
@@ -26,7 +29,8 @@ jobs:
26
29
27
30
- name: "Install dependencies"
28
31
run: |
- python -m pip install --upgrade --editable .[dev]
32
+ pip install --upgrade --editable .[dev]
33
+ pip install --upgrade pip ${{extra-pip-version-to-install}}
34
pip install flake8
35
36
- name: "Lint"
requirements.txt
@@ -1,2 +1,3 @@
1
packaging
2
+# These versions are matched in the GitHub workflows CI.
3
pip >= 10.0.1, <= 19
0 commit comments