Skip to content

Commit

Permalink
Bumped version of requests pkg to avoid bug with gzip responses in 2.…
Browse files Browse the repository at this point in the history
…6.1.
  • Loading branch information
braincore committed Aug 10, 2016
1 parent b018893 commit 434768d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dropbox/dropbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
'create_session',
]

__version__ = '6.6.0'
__version__ = '6.6.1'

import contextlib
import json
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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+"

Expand Down

2 comments on commit 434768d

@cakoose
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The gzip bug was introduced in 2.6.1 and then fixed in 2.6.2. If you want, you can just avoid that version without cutting out all the 2.5.x releases:

'requests>=2.5.1,!=2.6.1'

@braincore
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That syntax is new to me :) Switched to it in 28a1b68 (v6.6.2).

Please sign in to comment.