From 434768d99ddcfccaf34ae9fcade037739cbe9280 Mon Sep 17 00:00:00 2001 From: Ken Elkabany Date: Wed, 10 Aug 2016 01:47:35 -0700 Subject: [PATCH] Bumped version of requests pkg to avoid bug with gzip responses in 2.6.1. --- dropbox/dropbox.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dropbox/dropbox.py b/dropbox/dropbox.py index 65990b35..78be1cf2 100644 --- a/dropbox/dropbox.py +++ b/dropbox/dropbox.py @@ -4,7 +4,7 @@ 'create_session', ] -__version__ = '6.6.0' +__version__ = '6.6.1' import contextlib import json diff --git a/setup.py b/setup.py index dbecc4b3..40d8b83e 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ version = eval(line.split('=', 1)[1]) install_reqs = ['urllib3', - 'requests>=2.5.1', + 'requests>=2.6.2', 'six>=1.3.0'] assert sys.version_info >= (2, 6), "We only support Python 2.6+"