Add version constraint for google-auth (#64583)

This commit is contained in:
Marc Mueller 2022-01-21 00:11:22 +01:00 committed by GitHub
parent 11de453848
commit 3792b8b3ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 1 deletions

View File

@ -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

View File

@ -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 = (

View File

@ -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)