From fa1893421fb1c2ddc7509fd2675259261e5cca5c Mon Sep 17 00:00:00 2001 From: Ryan Barrett Date: Mon, 22 Oct 2018 07:05:28 -0700 Subject: [PATCH] upgrade google-api-python-client from 1.6.3 to 1.7.4 inspired by https://developers.googleblog.com/2018/03/discontinuing-support-for-json-rpc-and.html had to pay attention to https://github.com/googleapis/google-api-python-client/pull/469 since it affects us, but we pass its criteria - we do `build(..., http=httplib2.Http())` explicitly - so we should be ok. --- requirements.freeze.txt | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.freeze.txt b/requirements.freeze.txt index 17a0a90d..0d1da849 100644 --- a/requirements.freeze.txt +++ b/requirements.freeze.txt @@ -4,7 +4,7 @@ chardet==3.0.4 coverage==4.0.3 -e git+git@github.com:snarfed/gdata-python-client-1.git@1df4e1efea7e5cf2754bc7eec6c1ab48ab09e3b1#egg=gdata future==0.16.0 -google-api-python-client==1.6.3 +google-api-python-client==1.7.4 html5lib==0.9999999 httplib2==0.10.3 humanize==0.5.1 diff --git a/requirements.txt b/requirements.txt index 571238fa..1d72fa6c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ # Keep in sync with setup.py's install_requires! -e git+https://github.com/snarfed/gdata-python-client-1.git#egg=gdata future -google-api-python-client>=1.6.3 +google-api-python-client>=1.7.4 httplib2 humanize oauth2client>=4.1.1 diff --git a/setup.py b/setup.py index c9ab81e6..4745ae0b 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def __init__(self, *args, **kwargs): install_requires=[ 'future>=0.16.0', 'gdata>=2.0.18', - 'google-api-python-client>=1.6.3', + 'google-api-python-client>=1.7.4', 'httplib2', 'humanize', 'oauth2client>=4.1.1',