Skip to content

Commit 032f026

Browse files
[repo-helper] Configuration Update (#47)
* Updated files with 'repo_helper'. * Updated files with 'repo_helper'. Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 082290a commit 032f026

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,14 @@ jobs:
6666
python -VV
6767
python -m site
6868
python -m pip install --upgrade pip setuptools wheel
69-
python -m pip install --upgrade tox virtualenv!=20.16.0
69+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
7070
7171
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
7272
if: steps.setup-python.outcome == 'success'
7373
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7474

7575
- name: "Upload Coverage 🚀"
76-
uses: actions/upload-artifact@v2
76+
uses: actions/upload-artifact@v3
7777
if: ${{ always() && steps.setup-python.outcome == 'success' }}
7878
with:
7979
name: "coverage-${{ matrix.config.python-version }}"

.github/workflows/python_ci_linux.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ jobs:
6767
python -VV
6868
python -m site
6969
python -m pip install --upgrade pip setuptools wheel
70-
python -m pip install --upgrade tox virtualenv!=20.16.0
70+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
7171
python -m pip install --upgrade coverage_pyver_pragma
7272
7373
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
7474
if: steps.setup-python.outcome == 'success'
7575
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7676

7777
- name: "Upload Coverage 🚀"
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v3
7979
if: ${{ always() && steps.setup-python.outcome == 'success' }}
8080
with:
8181
name: "coverage-${{ matrix.config.python-version }}"
@@ -100,7 +100,7 @@ jobs:
100100
python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
101101
102102
- name: "Download Coverage 🪂"
103-
uses: actions/download-artifact@v2
103+
uses: actions/download-artifact@v3
104104
with:
105105
path: coverage
106106

@@ -118,7 +118,7 @@ jobs:
118118
119119
- name: "Upload Combined Coverage Artefact 🚀"
120120
if: ${{ steps.show.outcome != 'failure' }}
121-
uses: actions/upload-artifact@v2
121+
uses: actions/upload-artifact@v3
122122
with:
123123
name: "combined-coverage"
124124
path: .coverage
@@ -149,7 +149,7 @@ jobs:
149149
if: startsWith(github.ref, 'refs/tags/')
150150
run: |
151151
python -m pip install --upgrade pip setuptools wheel
152-
python -m pip install --upgrade tox
152+
python -m pip install --upgrade tox~=3.0
153153
154154
- name: Build distributions 📦
155155
if: startsWith(github.ref, 'refs/tags/')

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ jobs:
6565
python -VV
6666
python -m site
6767
python -m pip install --upgrade pip setuptools wheel
68-
python -m pip install --upgrade tox virtualenv!=20.16.0
68+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6969
7070
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
7171
if: steps.setup-python.outcome == 'success'
7272
run: python -m tox -e "${{ matrix.config.testenvs }}" -s false
7373

7474
- name: "Upload Coverage 🚀"
75-
uses: actions/upload-artifact@v2
75+
uses: actions/upload-artifact@v3
7676
if: ${{ always() && steps.setup-python.outcome == 'success' }}
7777
with:
7878
name: "coverage-${{ matrix.config.python-version }}"

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ isolated_build = True
3434
requires =
3535
pip>=21,!=22.2
3636
tox-envlist>=0.2.1
37+
tox~=3.0
3738
virtualenv!=20.16.0
3839

3940
[envlists]

0 commit comments

Comments
 (0)