Skip to content

Commit 96927ae

Browse files
authored
Merge pull request #164 from andthum/dependabot/pip/flake8-pytest-style-gte-1.0-and-lt-3.0
Update flake8-pytest-style requirement from <2.0,>=1.0 to >=1.0,<3.0
2 parents 8034b0d + 2a776ad commit 96927ae

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.pre-commit-config.yaml

+7-5
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ci:
3030

3131
repos:
3232
- repo: "https://github.com/pre-commit/pre-commit-hooks"
33-
rev: "v4.5.0"
33+
rev: "v4.6.0"
3434
hooks:
3535
### Git ###
3636
# Protect specific branches from direct check-ins.
@@ -108,7 +108,7 @@ repos:
108108
- id: "check-pre-commit-ci-config"
109109

110110
- repo: "https://github.com/python-jsonschema/check-jsonschema"
111-
rev: "0.27.4"
111+
rev: "0.28.2"
112112
hooks:
113113
# Validate Dependabot Config (v2) against the schema provided by
114114
# SchemaStore.
@@ -161,6 +161,8 @@ repos:
161161
- "colorama"
162162

163163
- repo: "https://github.com/psf/black-pre-commit-mirror"
164+
# Stay at black version 23, because some formatting rules change in
165+
# version 24.
164166
rev: "23.12.1"
165167
hooks:
166168
# Format Python code with black.
@@ -188,12 +190,12 @@ repos:
188190
- "flake8-docstrings >=1.0, <2.0"
189191
- "flake8-isort >=6.0, <7.0"
190192
- "flake8-logging-format >=0.1, <1.0"
191-
- "flake8-pytest-style >=1.0, <2.0"
193+
- "flake8-pytest-style >=2.0, <3.0"
192194
- "flake8-rst-docstrings >=0.2.6, <1.0"
193195
- "pep8-naming >=0.1, <1.0"
194196

195197
- repo: "https://github.com/PyCQA/bandit"
196-
rev: "1.7.7"
198+
rev: "1.7.8"
197199
hooks:
198200
# Check code security with bandit.
199201
- id: "bandit"
@@ -236,7 +238,7 @@ repos:
236238
- "-l"
237239

238240
- repo: "https://github.com/shellcheck-py/shellcheck-py"
239-
rev: "v0.9.0.6"
241+
rev: "v0.10.0.1"
240242
hooks:
241243
# Lint shell scripts with shellcheck.
242244
# NOTE: The official shellcheck hook from

requirements-dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ flake8-comprehensions >=3.0, <4.0
1515
flake8-docstrings >=1.0, <2.0
1616
flake8-isort >=6.0, <7.0
1717
flake8-logging-format >=0.1, <1.0
18-
flake8-pytest-style >=1.0, <2.0
18+
flake8-pytest-style >=2.0, <3.0
1919
flake8-rst-docstrings >=0.2.6, <1.0
2020
isort >=5.0, <6.0
2121
pep8-naming >=0.1, <1.0

0 commit comments

Comments
 (0)