diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cc94b8a..ae6be35 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,5 +1,9 @@ fail_fast: true +ci: + autofix_commit_msg: "chore(pre-commit): autofix run" + autoupdate_commit_msg: "chore(pre-commit): autoupdate hooks" + repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.6.0 @@ -18,7 +22,7 @@ repos: args: [--markdown-linebreak-ext=md] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.4 + rev: v0.6.5 hooks: - id: ruff - id: ruff-format @@ -60,7 +64,7 @@ repos: - id: shellcheck - repo: https://github.com/gitleaks/gitleaks - rev: v8.16.1 + rev: v8.19.2 hooks: - id: gitleaks diff --git a/pyproject.toml b/pyproject.toml index 0507900..7507e74 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,10 +61,10 @@ Documentation = "https://temporalscope.readthedocs.io/en/latest/" [tool.hatch.envs.default] dependencies = [ "pre-commit", - "ruff==0.6.4", # match ruff version in pre-commit-config.yaml to avoid conflicts + "ruff", "jupyterlab", "notebook", - "commitizen==3.29.0", + "commitizen", ] [tool.hatch.envs.docs]