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 9c2150a commit 9a352a2Copy full SHA for 9a352a2
.github/workflows/ci.yml
@@ -20,8 +20,9 @@ jobs:
20
strategy:
21
matrix:
22
# These versions match the minimum and maximum versions of pip in
23
- # requirements.txt
24
- pip-version: ['==10.0.1', '<= 19']
+ # requirements.txt.
+ # An empty string here represents the latest version.
25
+ pip-version: ['==10.0.1', '']
26
python-version: [3.6, 3.7, 3.8]
27
28
steps:
requirements.txt
@@ -1,3 +1,3 @@
1
packaging
2
-# These versions are matched in the GitHub workflows CI.
3
-pip >= 10.0.1, <= 19
+# Pinned pip versions are matched in the GitHub workflows CI matrix.
+pip >= 10.0.1
0 commit comments