Skip to content

Commit 16ea0bd

Browse files
committed
Lock the pytype version for now
1 parent 7b692e8 commit 16ea0bd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci-build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ jobs:
7474
if [ ${python_version:7:3} == "3.8" ]; then
7575
pip install -e ".[async]"
7676
pip install -e ".[adapter]"
77-
pip install "pytype" && pytype slack_bolt/
77+
# TODO: upgrade pytype
78+
pip install "pytype==2021.9.27" && pytype slack_bolt/
7879
fi
7980
- name: Run all tests for codecov (3.9 only)
8081
run: |

scripts/run_pytype.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
script_dir=$(dirname $0)
55
cd ${script_dir}/.. && \
66
pip install -e ".[adapter]" && \
7-
pip install -U pytype && \
7+
# TODO: upgrade pytype
8+
pip install "pytype==2021.9.27" && \
89
pytype slack_bolt/

0 commit comments

Comments
 (0)