diff --git a/.github/workflows/check_n_push_image.yml b/.github/workflows/check_n_push_image.yml index d4c5b20..e61c210 100644 --- a/.github/workflows/check_n_push_image.yml +++ b/.github/workflows/check_n_push_image.yml @@ -34,7 +34,7 @@ jobs: pip install $(python3 setup.py --install-requirements) pip install $(python3 setup.py --build-requirements) pip install --requirement docs/notebooks/requirements.txt - pip install pre-commit==4.1.0 + pip install pre-commit==4.3.0 make pre-commit docker-build-test-autotest: diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 08b2315..aae5989 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ default_language_version: python: python3.10 repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.12.1 + rev: v0.14.2 hooks: - id: ruff args: [ --fix ] @@ -15,4 +15,4 @@ repos: language: node pass_filenames: false types: [ python ] - additional_dependencies: [ 'pyright@1.1.394' ] + additional_dependencies: [ 'pyright@1.1.407' ] diff --git a/README.md b/README.md index fa8b522..4d9fccf 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ If you want to use MongoDB cache for saving reports and works metadata, complete $ python3 -m pip install --requirement docs/notebooks/requirements.txt $ python3 -m pip install $(python3 -m setup.py --build-requirements) $ python3 -m pip install $(python3 -m setup.py --install-requirements) - $ python3 -m pip install pre-commit==4.1.0 + $ python3 -m pip install pre-commit==4.3.0 $ make pre-commit ``` diff --git a/setup.py b/setup.py index 3f6bc08..6f70b0f 100644 --- a/setup.py +++ b/setup.py @@ -10,9 +10,9 @@ "Jinja2~=3.1.5", ) TEST_REQUIREMENTS: tuple[str, ...] = ( - "pytest~=8.3.4", - "pytest-mock~=3.14.0", - "pytest-cov~=6.0.0", + "pytest~=8.4.2", + "pytest-mock~=3.15.1", + "pytest-cov~=7.0.0", ) INSTALL_REQUIREMENTS: tuple[str, ...] = ( "argcomplete~=3.5.3",