@@ -63,15 +63,15 @@ jobs:
63
63
python -VV
64
64
python -m site
65
65
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
67
67
python -m pip install --upgrade coverage_pyver_pragma
68
68
69
69
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
70
70
if : steps.setup-python.outcome == 'success'
71
71
run : python -m tox -e "${{ matrix.config.testenvs }}" -s false
72
72
73
73
- name : " Upload Coverage 🚀"
74
- uses : actions/upload-artifact@v2
74
+ uses : actions/upload-artifact@v3
75
75
if : ${{ always() && steps.setup-python.outcome == 'success' }}
76
76
with :
77
77
name : " coverage-${{ matrix.config.python-version }}"
96
96
python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
97
97
98
98
- name : " Download Coverage 🪂"
99
- uses : actions/download-artifact@v2
99
+ uses : actions/download-artifact@v3
100
100
with :
101
101
path : coverage
102
102
@@ -114,7 +114,7 @@ jobs:
114
114
115
115
- name : " Upload Combined Coverage Artefact 🚀"
116
116
if : ${{ steps.show.outcome != 'failure' }}
117
- uses : actions/upload-artifact@v2
117
+ uses : actions/upload-artifact@v3
118
118
with :
119
119
name : " combined-coverage"
120
120
path : .coverage
@@ -145,7 +145,7 @@ jobs:
145
145
if : startsWith(github.ref, 'refs/tags/')
146
146
run : |
147
147
python -m pip install --upgrade pip setuptools wheel
148
- python -m pip install --upgrade tox
148
+ python -m pip install --upgrade tox~=3.0
149
149
150
150
- name : Build distributions 📦
151
151
if : startsWith(github.ref, 'refs/tags/')
0 commit comments