mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 01:08:12 +00:00
Add version constraint for google-auth (#64583)
This commit is contained in:
parent
11de453848
commit
3792b8b3ca
@ -92,3 +92,7 @@ pytest_asyncio==1000000000.0.0
|
||||
# https://github.com/jkeljo/sisyphus-control/issues/6
|
||||
python-engineio>=3.13.1,<4.0
|
||||
python-socketio>=4.6.0,<5.0
|
||||
|
||||
# Resolve a dependency conflict with cachetools.
|
||||
# Version 2.4.0 bumps the allowed dependency range.
|
||||
google-auth>=2.4.0
|
||||
|
@ -117,6 +117,10 @@ pytest_asyncio==1000000000.0.0
|
||||
# https://github.com/jkeljo/sisyphus-control/issues/6
|
||||
python-engineio>=3.13.1,<4.0
|
||||
python-socketio>=4.6.0,<5.0
|
||||
|
||||
# Resolve a dependency conflict with cachetools.
|
||||
# Version 2.4.0 bumps the allowed dependency range.
|
||||
google-auth>=2.4.0
|
||||
"""
|
||||
|
||||
IGNORE_PRE_COMMIT_HOOK_ID = (
|
||||
|
@ -3,7 +3,7 @@ PIP_CACHE=$1
|
||||
|
||||
# Number of existing dependency conflicts
|
||||
# Update if a PR resolve one!
|
||||
DEPENDENCY_CONFLICTS=14
|
||||
DEPENDENCY_CONFLICTS=13
|
||||
|
||||
PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE)
|
||||
LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)
|
||||
|
Loading…
x
Reference in New Issue
Block a user