Skip to content

Commit 1f88fee

Browse files
committed
Added urllib3 dependency.
1 parent f49e191 commit 1f88fee

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '3.11'
62+
version = '3.12'
6363
# The full version, including alpha/beta/rc tags.
64-
release = '3.11'
64+
release = '3.12'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

dropbox/dropbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
]
44

55
# TODO(kelkabany): We need to auto populate this as done in the v1 SDK.
6-
__version__ = '3.11'
6+
__version__ = '3.12'
77

88
import json
99
import logging

dropbox/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
raise ImportError('Dropbox python client requires urllib3.')
2727

2828

29-
SDK_VERSION = "3.11"
29+
SDK_VERSION = "3.12"
3030

3131
TRUSTED_CERT_FILE = pkg_resources.resource_filename(__name__, 'trusted-certs.crt')
3232

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66

77
from setuptools import setup
88

9-
install_reqs = ['requests>=2.5.1',
9+
install_reqs = ['urllib3',
10+
'requests>=2.5.1',
1011
'six>=1.3.0']
1112
assert sys.version_info >= (2, 6), "We only support Python 2.6+"
1213

@@ -15,7 +16,7 @@
1516

1617
dist = setup(
1718
name='dropbox',
18-
version='3.11',
19+
version='3.12',
1920
description='Official Dropbox API Client',
2021
author='Dropbox',
2122
author_email='dev-platform@dropbox.com',

0 commit comments

Comments
 (0)