Skip to content

Commit d2a8e30

Browse files
committed
Bump version to 1.3.3.
1 parent cdcbd51 commit d2a8e30

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

HISTORY.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@ Release History
66
Upcoming
77
++++++++
88

9+
1.3.3 (2015-12-22)
10+
++++++++++++++++++
11+
912
- Added a new class, ``DeveloperTokenClient`` that makes it easy to get started using the SDK with a Box developer
1013
token. It uses another new class, ``DeveloperTokenAuth`` for auth.
1114

1215
**Bugfixes**
1316

1417
- Added limit, offset, and filter_term parameters to ``client.users()`` to match up with the Box API.
1518

16-
1.3.2
19+
1.3.2 (2015-11-16)
1720
++++++++++++++++++
1821

1922
- Fix ``boxsdk.util.log.setup_logging()`` on Python 3.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ def main():
6161
install_requires.append('ordereddict>=1.1')
6262
setup(
6363
name='boxsdk',
64-
version='1.3.2',
64+
version='1.3.3',
6565
description='Official Box Python SDK',
6666
long_description=open(join(base_dir, 'README.rst')).read(),
6767
author='Box',
6868
author_email='[email protected]',
6969
url='http://opensource.box.com',
7070
packages=find_packages(exclude=['demo', 'docs', 'test']),
7171
install_requires=install_requires,
72-
extras_require={'jwt': jwt_requires, 'redis': redis_requires},
72+
extras_require={'jwt': jwt_requires, 'redis': redis_requires, 'all': jwt_requires + redis_requires},
7373
tests_require=['pytest', 'pytest-xdist', 'mock', 'sqlalchemy', 'bottle', 'jsonpatch'],
7474
cmdclass={'test': PyTest},
7575
classifiers=CLASSIFIERS,

0 commit comments

Comments
 (0)