From 4bb5051ea96394ba18d93828ef5ae1fcd0d0a510 Mon Sep 17 00:00:00 2001 From: Chris Nelson Date: Wed, 11 Mar 2015 02:52:36 +0000 Subject: [PATCH] Updated requires / dependencies to point at >=1.4.0 of google-api-python-client from PyPI which has python 3 support; bumped version to 0.1.2 --- requirements.txt | 2 +- setup.py | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/requirements.txt b/requirements.txt index 9dcaccc..4714444 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -https://github.com/pferate/google-api-python-client/zipball/python3-module_updates#egg=google-api-python-client-1.3.2 +google-api-python-client>=1.4.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 49687f9..5f52723 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='fleet', - version='0.1.1', + version='0.1.2', description='A python client for the fleet v1 API', @@ -36,10 +36,7 @@ packages=find_packages(), - install_requires=['google-api-python-client==1.3.2'], - - dependency_links=['https://github.com/pferate/google-api-python-client/zipball/' - 'python3-module_updates#egg=google-api-python-client-1.3.2'], + install_requires=['google-api-python-client>=1.4.0'], test_suite='fleet.v1.tests'