Skip to content

Commit 4c94350

Browse files
committed
No longer pin version for black, mypy and pylint in CircleCI checks
1 parent 2d92f3e commit 4c94350

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@ jobs:
4848
name: pylint checks
4949
command: |
5050
. venv/bin/activate
51-
pip install pylint==3.0.2
51+
pip install pylint
5252
python -m pylint ml_rest_fastapi
5353
5454
- run:
5555
name: mypy type hint checks
5656
command: |
5757
. venv/bin/activate
58-
pip install mypy==1.6.1
58+
pip install mypy
5959
python -m mypy --pretty --config-file=mypy.ini ml_rest_fastapi
6060
6161
- run:
6262
name: black formatter checks
6363
command: |
6464
. venv/bin/activate
65-
pip install black==23.10.1
65+
pip install black
6666
python -m black --check ml_rest_fastapi

0 commit comments

Comments
 (0)