Skip to content
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

chore(deps-dev): update pre-commit tools #645

Merged
merged 1 commit into from
Nov 22, 2023
Merged
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ repos:
name: Format code
args: [--config, pyproject.toml]
- repo: https://github.com/asottile/blacken-docs
rev: 1.15.0
rev: 1.16.0
hooks:
- id: blacken-docs
name: Format code in docstrings
Expand All @@ -46,7 +46,7 @@ repos:

# Upgrade and rewrite Python idioms.
- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
rev: v3.15.0
hooks:
- id: pyupgrade
name: Upgrade code idioms
Expand All @@ -56,13 +56,13 @@ repos:
# Similar to pylint, with a few more/different checks. For more available
# extensions: https://github.com/DmytroLitvinov/awesome-flake8-extensions
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
name: Check flake8 issues
files: ^src/package/|^tests/
types: [text, python]
additional_dependencies: [flake8-bugbear==23.7.10, flake8-builtins==2.1.0, flake8-comprehensions==3.14.0, flake8-docstrings==1.7.0, flake8-logging==1.4.0, flake8-mutable==1.2.0, flake8-noqa==1.3.2, flake8-print==5.0.0, flake8-pyi==23.6.0, flake8-pytest-style==1.7.2, flake8-rst-docstrings==0.3.0, pep8-naming==0.13.3]
additional_dependencies: [flake8-bugbear==23.9.16, flake8-builtins==2.2.0, flake8-comprehensions==3.14.0, flake8-docstrings==1.7.0, flake8-logging==1.4.0, flake8-mutable==1.2.0, flake8-noqa==1.3.2, flake8-print==5.0.0, flake8-pyi==23.11.0, flake8-pytest-style==1.7.2, flake8-rst-docstrings==0.3.0, pep8-naming==0.13.3]
args: [--config, .flake8]

# Run Pylint from the local repo to make sure venv packages
Expand Down Expand Up @@ -102,7 +102,7 @@ repos:
# Enable a whole bunch of useful helper hooks, too.
# See https://pre-commit.com/hooks.html for more hooks.
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-ast
- id: check-case-conflict
Expand Down Expand Up @@ -141,7 +141,7 @@ repos:

# Check and prettify the configuration files.
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.10.0
rev: v2.11.0
hooks:
- id: pretty-format-ini
args: [--autofix]
Expand All @@ -153,7 +153,7 @@ repos:

# Check GitHub Actions workflow files.
- repo: https://github.com/Mateusz-Grzelinski/actionlint-py
rev: v1.6.25
rev: v1.6.26.11
hooks:
- id: actionlint

Expand Down