From ef5d0031081c68a896fb51cee18067b5d754ebb4 Mon Sep 17 00:00:00 2001 From: Simon Weber Date: Thu, 13 Oct 2016 11:53:51 -0400 Subject: [PATCH] upgrade to unified uritemplate 3.0.0 [closes #57] As of uritemplate 3.0.0 and uritemplate.py 3.0.2, the two packages are equivalent. There were no changes to functionality; see https://github.com/sigmavirus24/uritemplate/blob/master/HISTORY.rst. --- README.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5c630686b0a..19590c77d6c 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Python 3 in production. # Third Party Libraries and Dependencies The following libraries will be installed when you install the client library: * [httplib2](https://github.com/httplib2/httplib2) -* [uri-templates](https://github.com/uri-templates/uritemplate-py) +* [uritemplate](https://github.com/sigmavirus24/uritemplate) For development you will also need the following libraries: * [WebTest](http://pythonpaste.org/webtest/) diff --git a/setup.py b/setup.py index b4edba6ae4a..ca8444618de 100644 --- a/setup.py +++ b/setup.py @@ -66,7 +66,7 @@ def _DetectBadness(): 'httplib2>=0.8,<1', 'oauth2client>=1.5.0,<4.0.0', 'six>=1.6.1,<2', - 'uritemplate>=0.6,<1', + 'uritemplate>=3.0.0,<4', ] if sys.version_info < (2, 7):