Skip to content

Commit

Permalink
pin mypy to 0.910 (#1531)
Browse files Browse the repository at this point in the history
pydantic/pydantic#3528

python/mypy#6617 (comment)
pydantic/pydantic#3175 (comment)

updating mypy in build yml and requirements to 0.910

Co-authored-by: stas <statis@microsoft.com>
  • Loading branch information
stishkin and stas committed Dec 16, 2021
1 parent 91d7ad4 commit 15cc8b9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -134,7 +134,7 @@ jobs:
run: |
set -ex
cd contrib/webhook-teams-service
python -m pip install --upgrade pip isort black mypy flake8
python -m pip install --upgrade pip isort black mypy==0.910 flake8
pip install -r requirements.txt
mypy webhook
black webhook --check
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
set -ex
cd src/deployment
python -m pip install --upgrade pip
pip install mypy isort black types-requests flake8
pip install mypy==0.910 isort black types-requests flake8
mypy .
isort --profile black . --check
black . --check
Expand Down
2 changes: 1 addition & 1 deletion src/api-service/requirements-dev.txt
@@ -1,6 +1,6 @@
pytest
flake8
mypy
mypy==0.910
isort
vulture
black
Expand Down
2 changes: 1 addition & 1 deletion src/cli/requirements-lint.txt
@@ -1,5 +1,5 @@
flake8
mypy
mypy==0.910
pytest
isort
vulture
Expand Down
2 changes: 1 addition & 1 deletion src/pytypes/requirements-lint.txt
@@ -1,5 +1,5 @@
flake8
mypy
mypy==0.910
pytest
isort
pydantic
Expand Down
@@ -1,5 +1,5 @@
flake8
mypy
mypy==0.910
pytest
isort
vulture
Expand Down
2 changes: 1 addition & 1 deletion src/utils/check-pr/requirements-lint.txt
@@ -1,5 +1,5 @@
flake8
mypy
mypy==0.910
pytest
isort
vulture
Expand Down

0 comments on commit 15cc8b9

Please sign in to comment.