File tree Expand file tree Collapse file tree 4 files changed +15
-11
lines changed
Expand file tree Collapse file tree 4 files changed +15
-11
lines changed Original file line number Diff line number Diff line change 3939 "slack_sdk==3.0.0a1" ,
4040 ],
4141 extras_require = {
42- # pip install -e ".[testing]"
43- # python -m pytest tests/scenario_tests/test_async_events.py
44- "testing" : test_dependencies ,
45- # pip install -e ".[adapters]"
46- "adapters" : [
47- "aiohttp>=3,<4" , # slackclient depends on aiohttp
42+ # pip install -e ".[async]"
43+ "async" : [
44+ # async features heavily depends on aiohttp
45+ "aiohttp>=3,<4" ,
46+ ],
47+ # pip install -e ".[adapter]"
48+ "adapter" : [
49+ # any of async ones
50+ "aiohttp>=3,<4" ,
4851 # used only under src/slack_bolt/adapter
52+ "boto3<=2" ,
4953 "bottle>=0.12,<1" ,
5054 "chalice>=1,<2" ,
5155 "click>=7,<8" , # for chalice
5761 "sanic>=20,<21" ,
5862 "starlette>=0.13,<1" ,
5963 "tornado>=6,<7" ,
60- # used only under src/slack_sdk/*_store
61- "boto3<=2" ,
62- ]
64+ ],
65+ # pip install -e ".[testing]"
66+ "testing" : test_dependencies ,
6367 },
6468 classifiers = [
6569 "Programming Language :: Python :: 3.6" ,
File renamed without changes.
Original file line number Diff line number Diff line change 33from logging import Logger
44from typing import Optional , List , Dict
55
6- from slack_bolt .errors import BoltError
6+ from slack_bolt .error import BoltError
77from slack_bolt .request import BoltRequest
88from slack_bolt .response import BoltResponse
99from slack_sdk .errors import SlackApiError
Original file line number Diff line number Diff line change 33from logging import Logger
44from typing import Optional , List , Dict
55
6- from slack_bolt .errors import BoltError
6+ from slack_bolt .error import BoltError
77from slack_bolt .request import BoltRequest
88from slack_bolt .response import BoltResponse
99from slack_sdk .errors import SlackApiError
You can’t perform that action at this time.
0 commit comments