We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5b97651 + d6e7ca4 commit 33c09aaCopy full SHA for 33c09aa
entrypoint.sh
@@ -116,9 +116,13 @@ fi
116
117
if [ "$6" = true ] ; then
118
119
- echo Running: mypy --ignore-missing-imports --follow-imports=silent --show-column-numbers ${14} $1
+ echo Running: mypy --install-types --non-interactive --ignore-missing-imports --follow-imports=silent --show-column-numbers ${14} $1
120
121
- mypy --ignore-missing-imports --follow-imports=silent --show-column-numbers ${14} $1
+ mypy \
122
+ --install-types --non-interactive \
123
+ --ignore-missing-imports \
124
+ --follow-imports=silent \
125
+ --show-column-numbers ${14} $1
126
exit_code=$?
127
128
if [ "$exit_code" = "0" ]; then
requirements.txt
@@ -1,7 +1,7 @@
1
black==21.11b1
2
flake8==4.0.1
3
isort==5.10.1
4
-mypy==0.910
+mypy~=0.961
5
pycodestyle==2.8.0
6
pydocstyle==6.1.1
7
pylint==2.12.1
0 commit comments