Skip to content

Commit 35ba4bb

Browse files
Updated files with 'repo_helper'.
1 parent 93826a3 commit 35ba4bb

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
python -VV
4444
python -m site
4545
python -m pip install --upgrade pip setuptools wheel
46-
python -m pip install tox
46+
python -m pip install tox~=3.0
4747
4848
- name: "Run Flake8"
4949
if: steps.changes.outputs.code == 'true'

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
python -VV
4848
python -m site
4949
python -m pip install --upgrade pip setuptools wheel
50-
python -m pip install --upgrade tox virtualenv!=20.16.0
50+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
5151
5252
- name: "Run mypy"
5353
if: steps.changes.outputs.code == 'true'

.github/workflows/python_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
python -VV
6161
python -m site
6262
python -m pip install --upgrade pip setuptools wheel
63-
python -m pip install --upgrade tox virtualenv!=20.16.0
63+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6464
6565
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6666
if: steps.setup-python.outcome == 'success'

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
python -VV
6262
python -m site
6363
python -m pip install --upgrade pip setuptools wheel
64-
python -m pip install --upgrade tox virtualenv!=20.16.0
64+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6565
python -m pip install --upgrade coverage_pyver_pragma
6666
6767
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
@@ -143,7 +143,7 @@ jobs:
143143
if: startsWith(github.ref, 'refs/tags/')
144144
run: |
145145
python -m pip install --upgrade pip setuptools wheel
146-
python -m pip install --upgrade tox
146+
python -m pip install --upgrade tox~=3.0
147147
148148
- name: Build distributions 📦
149149
if: startsWith(github.ref, 'refs/tags/')

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
python -VV
6161
python -m site
6262
python -m pip install --upgrade pip setuptools wheel
63-
python -m pip install --upgrade tox virtualenv!=20.16.0
63+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6464
6565
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6666
if: steps.setup-python.outcome == 'success'

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ isolated_build = True
2323
requires =
2424
pip>=21,!=22.2
2525
tox-envlist>=0.2.1
26+
tox~=3.0
2627
virtualenv!=20.16.0
2728

2829
[envlists]

0 commit comments

Comments
 (0)