Skip to content

Commit

Permalink
Merge pull request #224 from andthum/dependabot/pip/flake8-pytest-sty…
Browse files Browse the repository at this point in the history
…le-gte-1.0-and-lt-3.0

Update flake8-pytest-style requirement from <2.0,>=1.0 to >=1.0,<3.0
  • Loading branch information
andthum committed Apr 16, 2024
2 parents 7fba821 + 57b549c commit 3efd9e3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ci:

repos:
- repo: "https://github.com/pre-commit/pre-commit-hooks"
rev: "v4.5.0"
rev: "v4.6.0"
hooks:
### Git ###
# Protect specific branches from direct check-ins.
Expand Down Expand Up @@ -116,7 +116,7 @@ repos:
- id: "check-pre-commit-ci-config"

- repo: "https://github.com/python-jsonschema/check-jsonschema"
rev: "0.27.4"
rev: "0.28.2"
hooks:
# Validate Dependabot Config (v2) against the schema provided by
# SchemaStore.
Expand Down Expand Up @@ -169,6 +169,8 @@ repos:
- "colorama"

- repo: "https://github.com/psf/black-pre-commit-mirror"
# Stay at black version 23, because some formatting rules change in
# version 24.
rev: "23.12.1"
hooks:
# Format Python code with black.
Expand Down Expand Up @@ -199,12 +201,12 @@ repos:
- "flake8-docstrings >=1.0, <2.0"
- "flake8-isort >=6.0, <7.0"
- "flake8-logging-format >=0.1, <1.0"
- "flake8-pytest-style >=1.0, <2.0"
- "flake8-pytest-style >=2.0, <3.0"
- "flake8-rst-docstrings >=0.2.6, <1.0"
- "pep8-naming >=0.1, <1.0"

- repo: "https://github.com/PyCQA/bandit"
rev: "1.7.7"
rev: "1.7.8"
hooks:
# Check code security with bandit.
- id: "bandit"
Expand Down Expand Up @@ -247,7 +249,7 @@ repos:
- "-l"

- repo: "https://github.com/shellcheck-py/shellcheck-py"
rev: "v0.9.0.6"
rev: "v0.10.0.1"
hooks:
# Lint shell scripts with shellcheck.
# NOTE: The official shellcheck hook from
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ flake8-comprehensions >=3.0, <4.0
flake8-docstrings >=1.0, <2.0
flake8-isort >=6.0, <7.0
flake8-logging-format >=0.1, <1.0
flake8-pytest-style >=1.0, <2.0
flake8-pytest-style >=2.0, <3.0
flake8-rst-docstrings >=0.2.6, <1.0
isort >=5.0, <6.0
pep8-naming >=0.1, <1.0
Expand Down

0 comments on commit 3efd9e3

Please sign in to comment.