File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 15
15
16
16
strategy :
17
17
matrix :
18
+ # These versions match the minimum and maximum versions of pip in
19
+ # requirements.txt
20
+ pip-version : ['==10.0.1', '<= 19']
18
21
python-version : [3.6, 3.7, 3.8]
19
22
20
23
steps :
26
29
27
30
- name : " Install dependencies"
28
31
run : |
29
- python -m pip install --upgrade --editable .[dev]
32
+ pip install --upgrade --editable .[dev]
33
+ pip install --upgrade 'pip ${{ matrix.pip-version }}'
30
34
pip install flake8
31
35
32
36
- name : " Lint"
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ def find_extra_reqs(options):
25
25
package ['location' ])
26
26
for package_file in package .get ('files' , []) or []:
27
27
path = os .path .realpath (
28
- os .path .join (package ['location' ],package_file ),
28
+ os .path .join (package ['location' ], package_file ),
29
29
)
30
30
installed_files [path ] = package ['name' ]
31
31
package_path = common .is_package_file (path )
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def find_missing_reqs(options):
28
28
package ['location' ])
29
29
for package_file in package .get ('files' , []) or []:
30
30
path = os .path .realpath (
31
- os .path .join (package ['location' ],package_file ),
31
+ os .path .join (package ['location' ], package_file ),
32
32
)
33
33
installed_files [path ] = package ['name' ]
34
34
package_path = common .is_package_file (path )
Original file line number Diff line number Diff line change 1
1
packaging
2
+ # These versions are matched in the GitHub workflows CI.
2
3
pip >= 10.0.1 , <= 19
You can’t perform that action at this time.
0 commit comments