File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ readme = "README.md"
14
14
license = {text = " Apache-2.0" }
15
15
requires-python = " >=3.12"
16
16
dependencies = [
17
- " zigpy>=0.74 .0" ,
17
+ " zigpy>=0.75 .0" ,
18
18
]
19
19
20
20
[tool .setuptools .packages .find ]
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ pytest-sugar
13
13
pytest-timeout
14
14
pytest-asyncio
15
15
pytest>=7.1.3
16
- zigpy>=0.74 .0
16
+ zigpy>=0.75 .0
17
17
ruff==0.0.261
Original file line number Diff line number Diff line change 60
60
zhaquirks .setup ()
61
61
62
62
ALL_QUIRK_CLASSES = []
63
- for manufacturer in zq ._DEVICE_REGISTRY . _registry .values ():
63
+ for manufacturer in zq .DEVICE_REGISTRY . registry_v1 .values ():
64
64
for model_quirk_list in manufacturer .values ():
65
65
for quirk in model_quirk_list :
66
66
if quirk in ALL_QUIRK_CLASSES :
Original file line number Diff line number Diff line change 12
12
13
13
14
14
ALL_QUIRK_V2_CLASSES : list [QuirksV2RegistryEntry ] = itertools .chain .from_iterable (
15
- zigpy .quirks ._DEVICE_REGISTRY . _registry_v2 .values ()
15
+ zigpy .quirks .DEVICE_REGISTRY . registry_v2 .values ()
16
16
)
17
17
18
18
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ class TuyaTestSpellDevice(EnchantedDevice):
65
65
66
66
67
67
ENCHANTED_QUIRKS = [TuyaTestSpellDevice ]
68
- for manufacturer in zigpy .quirks ._DEVICE_REGISTRY . _registry .values ():
68
+ for manufacturer in zigpy .quirks .DEVICE_REGISTRY . registry_v1 .values ():
69
69
for model_quirk_list in manufacturer .values ():
70
70
for quirk_entry in model_quirk_list :
71
71
if quirk_entry in ENCHANTED_QUIRKS :
You can’t perform that action at this time.
0 commit comments