Skip to content

Commit 2469785

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

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-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
@@ -64,7 +64,7 @@ jobs:
6464
python -VV
6565
python -m site
6666
python -m pip install --upgrade pip setuptools wheel
67-
python -m pip install --upgrade tox virtualenv!=20.16.0
67+
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6868
6969
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
7070
if: steps.setup-python.outcome == 'success'

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ 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'

.github/workflows/python_ci_macos.yml

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

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ testing-tox
6767
:target: https://github.com/python-coincidence/testing-tox/commit/master
6868
:alt: GitHub last commit
6969

70-
.. |maintained| image:: https://img.shields.io/maintenance/yes/2022
70+
.. |maintained| image:: https://img.shields.io/maintenance/yes/2023
7171
:alt: Maintenance
7272

7373
.. end shields

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# * tox
44
# * envlists
55
# * testenv
6+
# * testenv:py312-dev
67
# * testenv:docs
78
# * testenv:build
89
# * testenv:lint
@@ -30,6 +31,7 @@ isolated_build = True
3031
requires =
3132
pip>=21,!=22.2
3233
tox-envlist>=0.2.1
34+
tox~=3.0
3335
virtualenv!=20.16.0
3436

3537
[envlists]

0 commit comments

Comments
 (0)