Skip to content

Commit

Permalink
Added typing dependency.
Browse files Browse the repository at this point in the history
- Also made requests version dependency less strict.
- Bumped to 6.6.2
  • Loading branch information
braincore committed Aug 10, 2016
1 parent 4bc887d commit 28a1b68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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.1'
__version__ = '6.6.2'

import contextlib
import json
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
version = eval(line.split('=', 1)[1])

install_reqs = ['urllib3',
'requests>=2.6.2',
'six>=1.3.0']
'requests>=2.5.1,!=2.6.1',
'six>=1.3.0',
'typing>=3.5.2']
assert sys.version_info >= (2, 6), "We only support Python 2.6+"

with open('LICENSE') as f:
Expand Down

0 comments on commit 28a1b68

Please sign in to comment.