From 4c94350d8b2aa2a2958906823c12910d131827ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Garc=C3=ADa=20de=20Bustos?= Date: Wed, 17 Jan 2024 16:04:33 +0000 Subject: [PATCH] No longer pin version for black, mypy and pylint in CircleCI checks --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ce046ac..9b87823 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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