mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Fix point by adding authlib constraint (#68176)
* Fix point by pinning authlib * Use constraint
This commit is contained in:
parent
db4b69663f
commit
aabf46b1b3
@ -97,6 +97,8 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|||||||
token_saver=token_saver,
|
token_saver=token_saver,
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
|
# pylint: disable-next=fixme
|
||||||
|
# TODO Remove authlib constraint when refactoring this code
|
||||||
await session.ensure_active_token()
|
await session.ensure_active_token()
|
||||||
except ConnectTimeout as err:
|
except ConnectTimeout as err:
|
||||||
_LOGGER.debug("Connection Timeout")
|
_LOGGER.debug("Connection Timeout")
|
||||||
|
@ -95,3 +95,7 @@ python-socketio>=4.6.0,<5.0
|
|||||||
# Constrain multidict to avoid typing issues
|
# Constrain multidict to avoid typing issues
|
||||||
# https://github.com/home-assistant/core/pull/67046
|
# https://github.com/home-assistant/core/pull/67046
|
||||||
multidict>=6.0.2
|
multidict>=6.0.2
|
||||||
|
|
||||||
|
# Required for compatibility with point integration - ensure_active_token
|
||||||
|
# https://github.com/home-assistant/core/pull/68176
|
||||||
|
authlib<1.0
|
||||||
|
@ -115,6 +115,10 @@ python-socketio>=4.6.0,<5.0
|
|||||||
# Constrain multidict to avoid typing issues
|
# Constrain multidict to avoid typing issues
|
||||||
# https://github.com/home-assistant/core/pull/67046
|
# https://github.com/home-assistant/core/pull/67046
|
||||||
multidict>=6.0.2
|
multidict>=6.0.2
|
||||||
|
|
||||||
|
# Required for compatibility with point integration - ensure_active_token
|
||||||
|
# https://github.com/home-assistant/core/pull/68176
|
||||||
|
authlib<1.0
|
||||||
"""
|
"""
|
||||||
|
|
||||||
IGNORE_PRE_COMMIT_HOOK_ID = (
|
IGNORE_PRE_COMMIT_HOOK_ID = (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user