Skip to content

Commit e81f907

Browse files
[repo-helper] Configuration Update (#14)
* Updated files with 'repo_helper'. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent f04a59d commit e81f907

File tree

10 files changed

+13
-11
lines changed

10 files changed

+13
-11
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
Run:
1818
name: "Flake8"
19-
runs-on: "ubuntu-18.04"
19+
runs-on: "ubuntu-20.04"
2020

2121
steps:
2222
- name: Checkout 🛎️

.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_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
6666
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6767
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
@@ -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: 3 additions & 3 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: ^dependency_dash/.*\.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

@@ -67,7 +67,7 @@ repos:
6767
- --keep-runtime-typing
6868

6969
- repo: https://github.com/Lucas-C/pre-commit-hooks
70-
rev: v1.2.0
70+
rev: v1.3.1
7171
hooks:
7272
- id: remove-crlf
7373
- id: forbid-crlf
-1 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.

formate.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ known_third_party = [
5050
"setup_py_upgrade",
5151
"shippinglabel",
5252
"typing_extensions",
53+
"werkzeug",
5354
"wtforms",
5455
]
5556
known_first_party = "dependency_dash"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ pypi-json>=0.2.0
1414
requests>=2.26.0
1515
setup-py-upgrade==1.2.1
1616
shippinglabel>=1.0.0
17-
wtforms>=2.2.0
1817
werkzeug<2.2
18+
wtforms>=2.2.0

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ envlist = py37, py38, py39, py310-dev, mypy, build
1717
skip_missing_interpreters = True
1818
isolated_build = True
1919
requires =
20-
pip>=21
20+
pip>=21,!=22.2
2121
tox-envlist>=0.2.1
22+
virtualenv!=20.16.0
2223

2324
[envlists]
2425
test = py37, py38, py39, py310-dev
@@ -42,15 +43,15 @@ changedir = {toxinidir}
4243
ignore_errors = True
4344
skip_install = True
4445
deps =
45-
flake8>=3.8.2
46+
flake8>=3.8.2,<5
4647
flake8-2020>=1.6.0
4748
flake8-builtins>=1.5.3
4849
flake8-docstrings>=1.5.0
4950
flake8-dunder-all>=0.1.1
5051
flake8-encodings>=0.1.0
5152
flake8-github-actions>=0.1.0
5253
flake8-noqa>=1.1.0,<=1.2.2
53-
flake8-pyi>=20.10.0
54+
flake8-pyi>=20.10.0,<=22.8.0
5455
flake8-pytest-style>=1.3.0
5556
flake8-quotes>=3.3.0
5657
flake8-slots>=0.1.0

0 commit comments

Comments
 (0)