Skip to content

Commit cafb756

Browse files
committed
Bump version to 1.0.1.
1 parent 056042a commit cafb756

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
language: python
2+
env:
3+
- TOX_ENV=py26
4+
- TOX_ENV=py27
5+
- TOX_ENV=py33
6+
- TOX_ENV=py34
7+
- TOX_ENV=pypy
8+
- TOX_ENV=pep8
9+
- TOX_ENV=pylint
10+
- TOX_ENV=coverage
11+
# commands to install dependencies
12+
install:
13+
- pip install tox --use-mirrors
14+
# commands to run
15+
script:
16+
- tox -e $TOX_ENV
17+
after_success:
18+
- if [ "-x$TOX_ENV" = "xcoverage" ]; then coveralls; fi

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def main():
5757
install_requires.append('ordereddict>=1.1')
5858
setup(
5959
name='boxsdk',
60-
version='1.0.0',
60+
version='1.0.1',
6161
description='Official Box Python SDK',
6262
long_description=open(join(base_dir, 'README.rst')).read(),
6363
author='Box',

0 commit comments

Comments
 (0)