Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate
Browse files Browse the repository at this point in the history
updates:
- [github.com/python-poetry/poetry: 1.5.0 → 1.6.0](python-poetry/poetry@1.5.0...1.6.0)
- [github.com/tox-dev/pyproject-fmt: 0.13.0 → 1.3.0](tox-dev/pyproject-fmt@0.13.0...1.3.0)
- [github.com/asottile/add-trailing-comma: v3.0.0 → v3.1.0](asottile/add-trailing-comma@v3.0.0...v3.1.0)
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.5.0](pre-commit/pre-commit-hooks@v4.4.0...v4.5.0)
- https://github.com/charliermarsh/ruff-pre-commithttps://github.com/astral-sh/ruff-pre-commit
- [github.com/astral-sh/ruff-pre-commit: v0.0.280 → v0.1.3](astral-sh/ruff-pre-commit@v0.0.280...v0.1.3)
- [github.com/psf/black: 23.7.0 → 23.10.1](psf/black@23.7.0...23.10.1)
- [github.com/asottile/pyupgrade: v3.9.0 → v3.15.0](asottile/pyupgrade@v3.9.0...v3.15.0)
- [github.com/pycqa/flake8: 6.0.0 → 6.1.0](PyCQA/flake8@6.0.0...6.1.0)
  • Loading branch information
pre-commit-ci[bot] authored Oct 30, 2023
1 parent d648288 commit 33d6434
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repos:

# Check if Poetry is configured correctly, and if the lock file is up to date, and if the requirements.txt file is up to date.
- repo: https://github.com/python-poetry/poetry
rev: "1.5.0"
rev: "1.6.0"
hooks:
- id: poetry-check
name: Check if Poetry is configured correctly by running `poetry check`
Expand All @@ -34,20 +34,20 @@ repos:
]

- repo: https://github.com/tox-dev/pyproject-fmt
rev: "0.13.0"
rev: "1.3.0"
hooks:
- id: pyproject-fmt
name: Format pyproject.toml with pyproject-fmt

# Add a trailing comma to Python stuff.
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.0.0
rev: v3.1.0
hooks:
- id: add-trailing-comma
args: [ --py36-plus ]

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files
name: Prevent adding large files to the repository (500 Kb)
Expand Down Expand Up @@ -111,16 +111,16 @@ repos:

# Run Ruff on all Python files. We do this before Black so that Black can
# format the code that Ruff changes.
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.0.280"
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.1.3"
hooks:
- id: ruff
name: Lint Python code with Ruff
args: [ "--fix", "--exit-non-zero-on-fix" ]

# Run Black on all Python files. This will format the code.
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.10.1
hooks:
- id: black
name: Format Python code with Black
Expand All @@ -135,15 +135,15 @@ repos:

# Run Pyupgrade on all Python files. This will upgrade the code to Python 3.11.
- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
rev: v3.15.0
hooks:
- id: pyupgrade
name: Upgrade Python syntax to Python 3.11 with pyupgrade
args: [ "--py311-plus" ]

# Run Flake8 on all Python files.
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
name: Lint Python code with Flake8
Expand Down

0 comments on commit 33d6434

Please sign in to comment.