From 0cc99044e7ddc49d8fd9bd75fad4e3f6c02b20ee Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Fri, 19 Jul 2024 18:30:57 -0700 Subject: [PATCH] quickfix: pin mypy version to avoid issues with latest release --- .github/workflows/lint.yaml | 2 +- backend/dev-requirements.txt | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 backend/dev-requirements.txt diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 09075f6d..4fcd8393 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -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: | diff --git a/backend/dev-requirements.txt b/backend/dev-requirements.txt new file mode 100644 index 00000000..38f681dd --- /dev/null +++ b/backend/dev-requirements.txt @@ -0,0 +1,3 @@ +black +pylint +mypy==1.10.1