Skip to content

Commit 5bc8de2

Browse files
committed
ci: be consistent in how we install tox
No need to upgrade when it's not already installed.
1 parent 1afe0ae commit 5bc8de2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install tox
5656
run: |
5757
python -m pip install --upgrade pip
58-
pip install --upgrade tox
58+
pip install tox
5959
6060
- name: Generate release notes
6161
env:

.github/workflows/doc-check-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
python-version: "3.13"
2929
cache: pip
3030

31-
- name: Install dependencies
31+
- name: Install tox
3232
run: |
3333
python -m pip install --upgrade pip
3434
pip install tox

.github/workflows/prepare-release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
with:
3939
python-version: "3.13"
4040

41-
- name: Install dependencies
41+
- name: Install tox
4242
run: |
4343
python -m pip install --upgrade pip
44-
pip install --upgrade tox
44+
pip install tox
4545
4646
- name: Prepare release PR (minor/patch release)
4747
if: github.event.inputs.major == 'no'

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ jobs:
268268
check-latest: true
269269
allow-prereleases: true
270270

271-
- name: Install dependencies
271+
- name: Install tox
272272
run: |
273273
python -m pip install --upgrade pip
274274
pip install tox

.github/workflows/update-plugin-list.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install tox
4141
run: |
4242
python -m pip install --upgrade pip
43-
pip install --upgrade tox
43+
pip install tox
4444
4545
- name: Update Plugin List
4646
run: tox -e update-plugin-list

0 commit comments

Comments
 (0)