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
2 changes: 1 addition & 1 deletion .github/workflows/check_n_push_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand All @@ -15,4 +15,4 @@ repos:
language: node
pass_filenames: false
types: [ python ]
additional_dependencies: [ '[email protected].394' ]
additional_dependencies: [ '[email protected].407' ]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading