Skip to content
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
18 changes: 9 additions & 9 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v5.0.0
hooks:
- id: check-merge-conflict
- id: check-toml
Expand All @@ -10,28 +10,28 @@ repos:
- id: no-commit-to-branch
- id: trailing-whitespace
- repo: https://github.com/pre-commit/pre-commit
rev: v4.0.0
rev: v4.2.0
hooks:
- id: validate_manifest
- repo: https://github.com/psf/black
rev: '23.3.0'
rev: '25.1.0'
hooks:
- id: black
types_or: [python, pyi]
language_version: python3
- repo: https://github.com/PyCQA/isort
rev: 5.12.0
rev: 6.0.1
hooks:
- id: isort
args: [--settings-file, ./pyproject.toml]
- repo: https://github.com/PyCQA/docformatter
rev: v1.7.1
rev: v1.7.6
hooks:
- id: docformatter
additional_dependencies: [tomli]
args: [--in-place, --config, ./pyproject.toml]
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.269'
rev: 'v0.11.9'
hooks:
- id: ruff
args: [ --select, "PL", --select, "F" ]
Expand All @@ -42,18 +42,18 @@ repos:
additional_dependencies: [toml]
args: [--config, ./pyproject.toml]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.3.0
rev: v1.15.0
hooks:
- id: mypy
additional_dependencies: [types-python-dateutil]
args: [--config-file, ./pyproject.toml]
- repo: https://github.com/myint/eradicate
rev: '2.2.0'
rev: '2.3.0'
hooks:
- id: eradicate
args: []
- repo: https://github.com/rstcheck/rstcheck
rev: 'v6.1.2'
rev: 'v6.2.4'
hooks:
- id: rstcheck
additional_dependencies: [tomli]
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
project = "docformatter"
copyright = "2022-2023, Steven Myint"
author = "Steven Myint"
release = "1.7.6"
release = "1.7.7"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
Loading
Loading