We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d92f3e commit 4c94350Copy full SHA for 4c94350
1 file changed
.circleci/config.yml
@@ -48,19 +48,19 @@ jobs:
48
name: pylint checks
49
command: |
50
. venv/bin/activate
51
- pip install pylint==3.0.2
+ pip install pylint
52
python -m pylint ml_rest_fastapi
53
54
- run:
55
name: mypy type hint checks
56
57
58
- pip install mypy==1.6.1
+ pip install mypy
59
python -m mypy --pretty --config-file=mypy.ini ml_rest_fastapi
60
61
62
name: black formatter checks
63
64
65
- pip install black==23.10.1
+ pip install black
66
python -m black --check ml_rest_fastapi
0 commit comments