quickfix: pin mypy version to avoid issues with latest release

This commit is contained in:
Ilya Kreymer 2024-07-19 18:30:57 -07:00
parent 2237120cd5
commit 0cc99044e7
2 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,7 @@ jobs:
cd backend/
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -U black pylint mypy
pip install -r dev-requirements.txt
- name: Style Check
run: |

View File

@ -0,0 +1,3 @@
black
pylint
mypy==1.10.1