diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 7e3aa33..b8936f9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,20 +2,20 @@ # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.5.0 + rev: v5.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - repo: https://github.com/psf/black - rev: "24.4.2" + rev: "24.10.0" hooks: - id: black - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.1 + rev: v0.7.3 hooks: - id: ruff - repo: https://github.com/RobertCraigie/pyright-python - rev: v1.1.370 + rev: v1.1.388 hooks: - id: pyright name: pyright (system) diff --git a/pyproject.toml b/pyproject.toml index 5e69d6e..2e7bbfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,9 @@ description = "Make ZIM files from DevDocs.io" readme = "README.md" dependencies = [ "requests==2.32.3", - "pydantic==2.8.2", + "pydantic==2.9.2", "zimscraperlib==4.0.0", - "Jinja2==3.1.3", + "Jinja2==3.1.4", "beautifulsoup4==4.12.3", ] dynamic = ["authors", "classifiers", "keywords", "license", "version", "urls"] @@ -21,19 +21,19 @@ scripts = [ "invoke==2.2.0", ] lint = [ - "black==24.4.2", - "ruff==0.5.1", + "black==24.10.0", + "ruff==0.7.3", ] check = [ - "pyright==1.1.374", + "pyright==1.1.388", ] test = [ - "pytest==8.2.2", - "coverage==7.5.4", + "pytest==8.3.3", + "coverage==7.6.4", ] dev = [ - "pre-commit==3.7.1", - "debugpy==1.8.2", + "pre-commit==4.0.1", + "debugpy==1.8.8", "devdocs2zim[scripts]", "devdocs2zim[lint]", "devdocs2zim[test]",