Skip to content

Commit 6e8c21f

Browse files
committed
🧪 Rename "previous" to "lowest" in tox
This better reflects that the pip version being pulled in is the lowest tested/supported.
1 parent fac71fc commit 6e8c21f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
fromJSON(
6464
inputs.cpython-pip-version
6565
&& inputs.cpython-pip-version
66-
|| '["latest", "previous"]'
66+
|| '["latest", "lowest"]'
6767
)
6868
}}
6969
env:

.github/workflows/cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
uses: ./.github/workflows/ci.yml
1212
with:
1313
cpython-pip-version: >-
14-
["main", "latest", "previous"]
14+
["main", "latest", "lowest"]

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
envlist =
33
# NOTE: keep this in sync with the env list in .github/workflows/ci.yml.
4-
py{38,39,310,311,312,py3}-pip{previous,latest,main}-coverage
5-
pip{previous,latest,main}-coverage
6-
pip{previous,latest,main}
4+
py{38,39,310,311,312,py3}-pip{lowest,latest,main}-coverage
5+
pip{lowest,latest,main}-coverage
6+
pip{lowest,latest,main}
77
checkqa
88
readme
99
skip_missing_interpreters = True
@@ -14,7 +14,7 @@ extras =
1414
testing
1515
coverage: coverage
1616
deps =
17-
pipprevious: pip==22.2.*
17+
piplowest: pip==22.2.*
1818
piplatest: pip
1919
pipmain: https://github.com/pypa/pip/archive/main.zip
2020
setenv =

0 commit comments

Comments
 (0)