Skip to content

Commit

Permalink
Fixed mypy to 0.910 (#2362)
Browse files Browse the repository at this point in the history
* [skip ci] FIxed mypy to 0.910

* Update run_code_style.bat

* Update unit-tests.yml
  • Loading branch information
vfdev-5 authored Dec 16, 2021
1 parent 105e5d6 commit 5c5837a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- "ignite/**"
- "tests/ignite/**"
- "tests/run_cpu_tests.sh"
- "tests/run_code_style.sh"
- "examples/**.py"
- "requirements-dev.txt"
- ".github/workflows/unit-tests.yml"
Expand All @@ -14,6 +15,7 @@ on:
- "ignite/**"
- "tests/ignite/**"
- "tests/run_cpu_tests.sh"
- "tests/run_code_style.sh"
- "examples/**.py"
- "requirements-dev.txt"
- ".github/workflows/unit-tests.yml"
Expand Down
2 changes: 1 addition & 1 deletion tests/run_code_style.bat
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mypy --config-file mypy.ini
goto end

:install
pip install flake8 "black==19.10b0" "isort==5.7.0" mypy
pip install flake8 "black==19.10b0" "isort==5.7.0" "mypy==0.910"
goto end

:end
Expand Down
2 changes: 1 addition & 1 deletion tests/run_code_style.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ elif [ $1 = "fmt" ]; then
elif [ $1 = "mypy" ]; then
mypy --config-file mypy.ini
elif [ $1 = "install" ]; then
pip install flake8 "black==19.10b0" "isort==5.7.0" mypy
pip install flake8 "black==19.10b0" "isort==5.7.0" "mypy==0.910"
fi

0 comments on commit 5c5837a

Please sign in to comment.