File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 59
59
# built documents.
60
60
#
61
61
# The short X.Y version.
62
- version = '3.11 '
62
+ version = '3.12 '
63
63
# The full version, including alpha/beta/rc tags.
64
- release = '3.11 '
64
+ release = '3.12 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change 3
3
]
4
4
5
5
# TODO(kelkabany): We need to auto populate this as done in the v1 SDK.
6
- __version__ = '3.11 '
6
+ __version__ = '3.12 '
7
7
8
8
import json
9
9
import logging
Original file line number Diff line number Diff line change 26
26
raise ImportError ('Dropbox python client requires urllib3.' )
27
27
28
28
29
- SDK_VERSION = "3.11 "
29
+ SDK_VERSION = "3.12 "
30
30
31
31
TRUSTED_CERT_FILE = pkg_resources .resource_filename (__name__ , 'trusted-certs.crt' )
32
32
Original file line number Diff line number Diff line change 6
6
7
7
from setuptools import setup
8
8
9
- install_reqs = ['requests>=2.5.1' ,
9
+ install_reqs = ['urllib3' ,
10
+ 'requests>=2.5.1' ,
10
11
'six>=1.3.0' ]
11
12
assert sys .version_info >= (2 , 6 ), "We only support Python 2.6+"
12
13
15
16
16
17
dist = setup (
17
18
name = 'dropbox' ,
18
- version = '3.11 ' ,
19
+ version = '3.12 ' ,
19
20
description = 'Official Dropbox API Client' ,
20
21
author = 'Dropbox' ,
21
22
author_email = 'dev-platform@dropbox.com' ,
You can’t perform that action at this time.
0 commit comments