Skip to content

Commit 0606947

Browse files
authored
Upgrade black, flake8, and pytype (#1149)
1 parent b5823f8 commit 0606947

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pytype.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
pip install -e ".[testing]"
2525
pip install -e ".[optional]"
2626
# As pytype can change its behavior in newer versions, we manually upgrade it
27-
pip install "pytype==2021.11.18"
27+
pip install "pytype==2021.12.8"
2828
- name: Run pytype
2929
run: |
3030
pytype slack_sdk/

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
"Werkzeug<2", # TODO: Flask-Sockets is not yet compatible with Flask 2.x
2525
"pytest-cov>=2,<3",
2626
"codecov>=2,<3",
27-
"flake8>=3,<4",
28-
"black==21.9b0",
27+
"flake8>=4,<5",
28+
"black==21.12b0",
2929
"psutil>=5,<6",
3030
"databases>=0.3",
3131
# used only under slack_sdk/*_store
@@ -34,7 +34,7 @@
3434
"moto<2", # For AWS tests
3535
]
3636
codegen_dependencies = [
37-
"black==21.11b1",
37+
"black==21.12b0",
3838
]
3939

4040
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)

0 commit comments

Comments
 (0)