Skip to content

Update flake8-pytest-style requirement from <2.0,>=1.0 to >=1.0,<3.0 #164

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,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 @@ -108,7 +108,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 @@ -161,6 +161,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 @@ -188,12 +190,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 @@ -236,7 +238,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 @@ -15,7 +15,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
Loading