Skip to content

Commit 1543602

Browse files
authored
build: updates test, linter and type checker versions. (#239)
1 parent 7335585 commit 1543602

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/check_n_push_image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
pip install $(python3 setup.py --install-requirements)
3535
pip install $(python3 setup.py --build-requirements)
3636
pip install --requirement docs/notebooks/requirements.txt
37-
pip install pre-commit==4.1.0
37+
pip install pre-commit==4.3.0
3838
make pre-commit
3939
4040
docker-build-test-autotest:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ default_language_version:
22
python: python3.10
33
repos:
44
- repo: https://github.com/astral-sh/ruff-pre-commit
5-
rev: v0.12.1
5+
rev: v0.14.2
66
hooks:
77
- id: ruff
88
args: [ --fix ]
@@ -15,4 +15,4 @@ repos:
1515
language: node
1616
pass_filenames: false
1717
types: [ python ]
18-
additional_dependencies: [ '[email protected].394' ]
18+
additional_dependencies: [ '[email protected].407' ]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ If you want to use MongoDB cache for saving reports and works metadata, complete
8282
$ python3 -m pip install --requirement docs/notebooks/requirements.txt
8383
$ python3 -m pip install $(python3 -m setup.py --build-requirements)
8484
$ python3 -m pip install $(python3 -m setup.py --install-requirements)
85-
$ python3 -m pip install pre-commit==4.1.0
85+
$ python3 -m pip install pre-commit==4.3.0
8686
$ make pre-commit
8787
```
8888

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"Jinja2~=3.1.5",
1111
)
1212
TEST_REQUIREMENTS: tuple[str, ...] = (
13-
"pytest~=8.3.4",
14-
"pytest-mock~=3.14.0",
15-
"pytest-cov~=6.0.0",
13+
"pytest~=8.4.2",
14+
"pytest-mock~=3.15.1",
15+
"pytest-cov~=7.0.0",
1616
)
1717
INSTALL_REQUIREMENTS: tuple[str, ...] = (
1818
"argcomplete~=3.5.3",

0 commit comments

Comments
 (0)