mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Add a constraint for aiofiles to ensure it does not get downgraded (#131666)
This commit is contained in:
parent
4093a68cc0
commit
ce20670d84
@ -197,3 +197,11 @@ tenacity!=8.4.0
|
|||||||
# 5.0.0 breaks Timeout as a context manager
|
# 5.0.0 breaks Timeout as a context manager
|
||||||
# TypeError: 'Timeout' object does not support the context manager protocol
|
# TypeError: 'Timeout' object does not support the context manager protocol
|
||||||
async-timeout==4.0.3
|
async-timeout==4.0.3
|
||||||
|
|
||||||
|
# aiofiles keeps getting downgraded by custom components
|
||||||
|
# causing newer methods to not be available and breaking
|
||||||
|
# some integrations at startup
|
||||||
|
# https://github.com/home-assistant/core/issues/127529
|
||||||
|
# https://github.com/home-assistant/core/issues/122508
|
||||||
|
# https://github.com/home-assistant/core/issues/118004
|
||||||
|
aiofiles>=24.1.0
|
||||||
|
@ -230,6 +230,14 @@ tenacity!=8.4.0
|
|||||||
# 5.0.0 breaks Timeout as a context manager
|
# 5.0.0 breaks Timeout as a context manager
|
||||||
# TypeError: 'Timeout' object does not support the context manager protocol
|
# TypeError: 'Timeout' object does not support the context manager protocol
|
||||||
async-timeout==4.0.3
|
async-timeout==4.0.3
|
||||||
|
|
||||||
|
# aiofiles keeps getting downgraded by custom components
|
||||||
|
# causing newer methods to not be available and breaking
|
||||||
|
# some integrations at startup
|
||||||
|
# https://github.com/home-assistant/core/issues/127529
|
||||||
|
# https://github.com/home-assistant/core/issues/122508
|
||||||
|
# https://github.com/home-assistant/core/issues/118004
|
||||||
|
aiofiles>=24.1.0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
GENERATED_MESSAGE = (
|
GENERATED_MESSAGE = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user