File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ def main():
57
57
install_requires .append ('ordereddict>=1.1' )
58
58
setup (
59
59
name = 'boxsdk' ,
60
- version = '1.0.0 ' ,
60
+ version = '1.0.1 ' ,
61
61
description = 'Official Box Python SDK' ,
62
62
long_description = open (join (base_dir , 'README.rst' )).read (),
63
63
author = 'Box' ,
You can’t perform that action at this time.
0 commit comments