Skip to content

Commit

Permalink
Merge branch 'master' into allow-non-json-errors
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Dec 8, 2020
2 parents d80adeb + e4e4b40 commit a715077
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 2 deletions.
5 changes: 3 additions & 2 deletions googleapiclient/discovery_cache/__init__.py
Expand Up @@ -44,6 +44,7 @@ def autodetect():
from . import file_cache

return file_cache.cache
except Exception as e:
LOGGER.warning(e, exc_info=True)
except Exception:
LOGGER.info("file_cache is only supported with oauth2client<4.0.0",
exc_info=False)
return None
Empty file added testing/constraints-3.10.txt
Empty file.
Empty file added testing/constraints-3.11.txt
Empty file.
13 changes: 13 additions & 0 deletions testing/constraints-3.6.txt
@@ -0,0 +1,13 @@
# This constraints file is used to check that lower bounds
# are correct in setup.py
# List *all* library dependencies and extras in this file.
# Pin the version to the lower bound.
#
# e.g., if setup.py has "foo >= 1.14.0, < 2.0.0dev",
# Then this file should have foo==1.14.0
httplib2==0.15.0
google-auth==1.16.0
google-auth-httplib2==0.0.3
google-api-core==1.21.0
six==1.13.0
uritemplate==3.0.0
Empty file added testing/constraints-3.7.txt
Empty file.
Empty file added testing/constraints-3.8.txt
Empty file.
Empty file added testing/constraints-3.9.txt
Empty file.

0 comments on commit a715077

Please sign in to comment.