We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bc887d commit 28a1b68Copy full SHA for 28a1b68
dropbox/dropbox.py
@@ -4,7 +4,7 @@
4
'create_session',
5
]
6
7
-__version__ = '6.6.1'
+__version__ = '6.6.2'
8
9
import contextlib
10
import json
setup.py
@@ -23,8 +23,9 @@
23
version = eval(line.split('=', 1)[1])
24
25
install_reqs = ['urllib3',
26
- 'requests>=2.6.2',
27
- 'six>=1.3.0']
+ 'requests>=2.5.1,!=2.6.1',
+ 'six>=1.3.0',
28
+ 'typing>=3.5.2']
29
assert sys.version_info >= (2, 6), "We only support Python 2.6+"
30
31
with open('LICENSE') as f:
0 commit comments