Skip to content

Commit

Permalink
No longer pin version for black, mypy and pylint in CircleCI checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jgbustos committed Jan 17, 2024
1 parent 2d92f3e commit 4c94350
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,19 @@ jobs:
name: pylint checks
command: |
. venv/bin/activate
pip install pylint==3.0.2
pip install pylint
python -m pylint ml_rest_fastapi
- run:
name: mypy type hint checks
command: |
. venv/bin/activate
pip install mypy==1.6.1
pip install mypy
python -m mypy --pretty --config-file=mypy.ini ml_rest_fastapi
- run:
name: black formatter checks
command: |
. venv/bin/activate
pip install black==23.10.1
pip install black
python -m black --check ml_rest_fastapi

0 comments on commit 4c94350

Please sign in to comment.