diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4ed9593a..be2308ad 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -25,7 +25,7 @@ repos: - repo: https://github.com/asottile/pyupgrade # Latest version for Python 3.7: 3.3.2 # Latest version for Python 3.8: 3.8.0 - rev: v3.15.0 + rev: v3.15.1 hooks: - id: pyupgrade args: [--py37-plus] @@ -42,7 +42,7 @@ repos: # More information can be found in its documentation: # https://docs.astral.sh/ruff/ - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.2.1 + rev: v0.2.2 hooks: - id: ruff # Fix what can be fixed in-place and exit with non-zero status if files were @@ -74,7 +74,7 @@ repos: - id: mypy - repo: https://github.com/SINTEF/ci-cd - rev: v2.7.2 + rev: v2.7.3 hooks: - id: docs-api-reference args: diff --git a/pyproject.toml b/pyproject.toml index 251ae947..8666ea7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,9 +34,9 @@ dynamic = ["version", "description"] dependencies = [ "invoke ~=2.2", "packaging ~=23.2", - "tomlkit ~=0.12.3", + "tomlkit ~=0.12.4", "typing-extensions ~=4.7; python_version < '3.8'", - "typing-extensions ~=4.9; python_version >= '3.8'", + "typing-extensions ~=4.10; python_version >= '3.8'", ] [project.optional-dependencies] @@ -47,7 +47,7 @@ docs = [ "mkdocs-material ~=9.2; python_version < '3.8'", "mkdocs-material ~=9.5; python_version >= '3.8'", "mkdocstrings[python-legacy] ~=0.22.0; python_version < '3.8'", - "mkdocstrings[python-legacy] ~=0.24.0; python_version >= '3.8'", + "mkdocstrings[python-legacy] ~=0.24.1; python_version >= '3.8'", ] testing = [ "pytest ~=7.4",