mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 21:57:51 +00:00
Bump bleak to 0.17.0 (#78333)
This commit is contained in:
parent
bad81c1bc9
commit
392548fe6e
@ -5,10 +5,11 @@
|
|||||||
"dependencies": ["usb"],
|
"dependencies": ["usb"],
|
||||||
"quality_scale": "internal",
|
"quality_scale": "internal",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"bleak==0.16.0",
|
"bleak==0.17.0",
|
||||||
|
"bleak-retry-connector==1.15.1",
|
||||||
"bluetooth-adapters==0.4.1",
|
"bluetooth-adapters==0.4.1",
|
||||||
"bluetooth-auto-recovery==0.3.3",
|
"bluetooth-auto-recovery==0.3.3",
|
||||||
"dbus_next==0.2.3"
|
"dbus-fast==1.4.0"
|
||||||
],
|
],
|
||||||
"codeowners": ["@bdraco"],
|
"codeowners": ["@bdraco"],
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
|
@ -17,7 +17,7 @@ from bleak.backends.bluezdbus.advertisement_monitor import OrPattern
|
|||||||
from bleak.backends.bluezdbus.scanner import BlueZScannerArgs
|
from bleak.backends.bluezdbus.scanner import BlueZScannerArgs
|
||||||
from bleak.backends.device import BLEDevice
|
from bleak.backends.device import BLEDevice
|
||||||
from bleak.backends.scanner import AdvertisementData
|
from bleak.backends.scanner import AdvertisementData
|
||||||
from dbus_next import InvalidMessageError
|
from dbus_fast import InvalidMessageError
|
||||||
|
|
||||||
from homeassistant.const import EVENT_HOMEASSISTANT_STOP
|
from homeassistant.const import EVENT_HOMEASSISTANT_STOP
|
||||||
from homeassistant.core import (
|
from homeassistant.core import (
|
||||||
|
@ -10,13 +10,14 @@ atomicwrites-homeassistant==1.4.1
|
|||||||
attrs==21.2.0
|
attrs==21.2.0
|
||||||
awesomeversion==22.8.0
|
awesomeversion==22.8.0
|
||||||
bcrypt==3.1.7
|
bcrypt==3.1.7
|
||||||
bleak==0.16.0
|
bleak-retry-connector==1.15.1
|
||||||
|
bleak==0.17.0
|
||||||
bluetooth-adapters==0.4.1
|
bluetooth-adapters==0.4.1
|
||||||
bluetooth-auto-recovery==0.3.3
|
bluetooth-auto-recovery==0.3.3
|
||||||
certifi>=2021.5.30
|
certifi>=2021.5.30
|
||||||
ciso8601==2.2.0
|
ciso8601==2.2.0
|
||||||
cryptography==37.0.4
|
cryptography==37.0.4
|
||||||
dbus_next==0.2.3
|
dbus-fast==1.4.0
|
||||||
fnvhash==0.1.0
|
fnvhash==0.1.0
|
||||||
hass-nabucasa==0.55.0
|
hass-nabucasa==0.55.0
|
||||||
home-assistant-bluetooth==1.3.0
|
home-assistant-bluetooth==1.3.0
|
||||||
|
@ -408,7 +408,10 @@ bimmer_connected==0.10.2
|
|||||||
bizkaibus==0.1.1
|
bizkaibus==0.1.1
|
||||||
|
|
||||||
# homeassistant.components.bluetooth
|
# homeassistant.components.bluetooth
|
||||||
bleak==0.16.0
|
bleak-retry-connector==1.15.1
|
||||||
|
|
||||||
|
# homeassistant.components.bluetooth
|
||||||
|
bleak==0.17.0
|
||||||
|
|
||||||
# homeassistant.components.blebox
|
# homeassistant.components.blebox
|
||||||
blebox_uniapi==2.0.2
|
blebox_uniapi==2.0.2
|
||||||
@ -535,7 +538,7 @@ datadog==0.15.0
|
|||||||
datapoint==0.9.8
|
datapoint==0.9.8
|
||||||
|
|
||||||
# homeassistant.components.bluetooth
|
# homeassistant.components.bluetooth
|
||||||
dbus_next==0.2.3
|
dbus-fast==1.4.0
|
||||||
|
|
||||||
# homeassistant.components.debugpy
|
# homeassistant.components.debugpy
|
||||||
debugpy==1.6.3
|
debugpy==1.6.3
|
||||||
|
@ -329,7 +329,10 @@ bellows==0.33.1
|
|||||||
bimmer_connected==0.10.2
|
bimmer_connected==0.10.2
|
||||||
|
|
||||||
# homeassistant.components.bluetooth
|
# homeassistant.components.bluetooth
|
||||||
bleak==0.16.0
|
bleak-retry-connector==1.15.1
|
||||||
|
|
||||||
|
# homeassistant.components.bluetooth
|
||||||
|
bleak==0.17.0
|
||||||
|
|
||||||
# homeassistant.components.blebox
|
# homeassistant.components.blebox
|
||||||
blebox_uniapi==2.0.2
|
blebox_uniapi==2.0.2
|
||||||
@ -412,7 +415,7 @@ datadog==0.15.0
|
|||||||
datapoint==0.9.8
|
datapoint==0.9.8
|
||||||
|
|
||||||
# homeassistant.components.bluetooth
|
# homeassistant.components.bluetooth
|
||||||
dbus_next==0.2.3
|
dbus-fast==1.4.0
|
||||||
|
|
||||||
# homeassistant.components.debugpy
|
# homeassistant.components.debugpy
|
||||||
debugpy==1.6.3
|
debugpy==1.6.3
|
||||||
|
@ -7,7 +7,7 @@ from bleak.backends.scanner import (
|
|||||||
AdvertisementDataCallback,
|
AdvertisementDataCallback,
|
||||||
BLEDevice,
|
BLEDevice,
|
||||||
)
|
)
|
||||||
from dbus_next import InvalidMessageError
|
from dbus_fast import InvalidMessageError
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from homeassistant.components import bluetooth
|
from homeassistant.components import bluetooth
|
||||||
|
Loading…
x
Reference in New Issue
Block a user