Skip to content

Commit 1490d8e

Browse files
Updated files with 'repo_helper'. (#27)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 7e23115 commit 1490d8e

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
@@ -62,7 +62,7 @@ jobs:
6262
python -VV
6363
python -m site
6464
python -m pip install --upgrade pip setuptools wheel
65-
python -m pip install --upgrade tox virtualenv!=20.16.0
65+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6666
6767
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6868
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
@@ -63,7 +63,7 @@ jobs:
6363
python -VV
6464
python -m site
6565
python -m pip install --upgrade pip setuptools wheel
66-
python -m pip install --upgrade tox virtualenv!=20.16.0
66+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6767
6868
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6969
if: steps.setup-python.outcome == 'success'
@@ -90,7 +90,7 @@ jobs:
9090
if: startsWith(github.ref, 'refs/tags/')
9191
run: |
9292
python -m pip install --upgrade pip setuptools wheel
93-
python -m pip install --upgrade tox
93+
python -m pip install --upgrade tox~=3.0
9494
9595
- name: Build distributions 📦
9696
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
@@ -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
6666
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6767
if: steps.setup-python.outcome == 'success'

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ isolated_build = True
2020
requires =
2121
pip>=21,!=22.2
2222
tox-envlist>=0.2.1
23+
tox~=3.0
2324
virtualenv!=20.16.0
2425

2526
[envlists]

0 commit comments

Comments
 (0)