File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1010
1111 strategy :
1212 matrix :
13- python-version : [3.9 , "3.10 ", "3.11 "]
13+ python-version : ["3.10" , "3.11 ", "3.12 "]
1414
1515 steps :
1616 - uses : actions/checkout@v3
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ pytest-asyncio
22pytest-cov
33async_timeout>=4.0.1
44bleak>=0.17.0
5- bleak-retry-connector>=2.9 .0
5+ bleak-retry-connector>=3.4 .0
66cryptography>=38.0.3
77boto3>=1.20.24
88requests>=2.28.1
Original file line number Diff line number Diff line change 66 install_requires = [
77 "async_timeout>=4.0.1" ,
88 "bleak>=0.19.0" ,
9- "bleak-retry-connector>=2.9 .0" ,
9+ "bleak-retry-connector>=3.4 .0" ,
1010 "cryptography>=39.0.0" ,
1111 "pyOpenSSL>=23.0.0" ,
1212 "boto3>=1.20.24" ,
Original file line number Diff line number Diff line change 11"""Library to handle connection with Switchbot."""
22from __future__ import annotations
33
4- from bleak_retry_connector import close_stale_connections , get_device
4+ from bleak_retry_connector import (
5+ close_stale_connections ,
6+ close_stale_connections_by_address ,
7+ get_device ,
8+ )
59
610from .adv_parser import SwitchbotSupportedType , parse_advertisement_data
711from .const import (
2731__all__ = [
2832 "get_device" ,
2933 "close_stale_connections" ,
34+ "close_stale_connections_by_address" ,
3035 "parse_advertisement_data" ,
3136 "GetSwitchbotDevices" ,
3237 "SwitchBotAdvertisement" ,
You can’t perform that action at this time.
0 commit comments