Skip to content

Commit 85f1473

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

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

.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
50+
python -m pip install --upgrade tox 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
63+
python -m pip install --upgrade tox 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: 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
64+
python -m pip install --upgrade tox virtualenv!=20.16.0
6565
python -m pip install --upgrade coverage_pyver_pragma
6666
6767
- name: "Run Tests for Python ${{ matrix.config.python-version }}"

.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
63+
python -m pip install --upgrade tox virtualenv!=20.16.0
6464
6565
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6666
if: steps.setup-python.outcome == 'success'

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ repos:
4040
- id: bind-requirements
4141

4242
- repo: https://github.com/domdfcoding/flake8-dunder-all
43-
rev: v0.2.1
43+
rev: v0.2.2
4444
hooks:
4545
- id: ensure-dunder-all
4646
files: ^tox_recreate_hook/.*\.py$
4747

4848
- repo: https://github.com/domdfcoding/flake2lint
49-
rev: v0.4.1
49+
rev: v0.4.2
5050
hooks:
5151
- id: flake2lint
5252

doc-source/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sphinx-copybutton>=0.2.12
88
sphinx-debuginfo>=0.1.0
99
sphinx-favicon>=0.2
1010
sphinx-licenseinfo>=0.1.1
11-
sphinx-notfound-page>=0.5
11+
sphinx-notfound-page>=0.7.1
1212
sphinx-prompt>=1.1.0
1313
sphinx-pyproject>=0.1.0
1414
sphinx-tabs>=1.1.13

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ envlist = py37, py38, py39, py310-dev, mypy, build
2121
skip_missing_interpreters = True
2222
isolated_build = True
2323
requires =
24-
pip>=21
24+
pip>=21,!=22.2
2525
tox-envlist>=0.2.1
26+
virtualenv!=20.16.0
2627

2728
[envlists]
2829
test = py37, py38, py39, py310-dev
@@ -64,15 +65,15 @@ changedir = {toxinidir}
6465
ignore_errors = True
6566
skip_install = True
6667
deps =
67-
flake8>=3.8.2
68+
flake8>=3.8.2,<5
6869
flake8-2020>=1.6.0
6970
flake8-builtins>=1.5.3
7071
flake8-docstrings>=1.5.0
7172
flake8-dunder-all>=0.1.1
7273
flake8-encodings>=0.1.0
7374
flake8-github-actions>=0.1.0
74-
flake8-noqa>=1.1.0
75-
flake8-pyi>=20.10.0
75+
flake8-noqa>=1.1.0,<=1.2.2
76+
flake8-pyi>=20.10.0,<=22.8.0
7677
flake8-pytest-style>=1.3.0
7778
flake8-quotes>=3.3.0
7879
flake8-slots>=0.1.0

0 commit comments

Comments
 (0)