Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
Signed-off-by: Beat Buesser <[email protected]>
  • Loading branch information
Beat Buesser committed Oct 8, 2019
1 parent 5fd7924 commit 9c6ebc6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ git commit -s -m 'Add new feature'
如果您使用ART进行研究,请考虑引用以下参考文件:
```
@article{art2018,
title = {Adversarial Robustness Toolbox v1.0.0},
title = {Adversarial Robustness Toolbox v1.0.1},
author = {Nicolae, Maria-Irina and Sinn, Mathieu and Tran, Minh~Ngoc and Buesser, Beat and Rawat, Ambrish and Wistuba, Martin and Zantedeschi, Valentina and Baracaldo, Nathalie and Chen, Bryant and Ludwig, Heiko and Molloy, Ian and Edwards, Ben},
journal = {CoRR},
volume = {1807.01069},
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ git commit -s -m 'Add new feature'
If you use ART for research, please consider citing the following reference paper:
```
@article{art2018,
title = {Adversarial Robustness Toolbox v1.0.0},
title = {Adversarial Robustness Toolbox v1.0.1},
author = {Nicolae, Maria-Irina and Sinn, Mathieu and Tran, Minh~Ngoc and Buesser, Beat and Rawat, Ambrish and Wistuba, Martin and Zantedeschi, Valentina and Baracaldo, Nathalie and Chen, Bryant and Ludwig, Heiko and Molloy, Ian and Edwards, Ben},
journal = {CoRR},
volume = {1807.01069},
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = '1.0'
# The full version, including alpha/beta/rc tags
release = '1.0.0'
release = '1.0.1'


# -- General configuration ---------------------------------------------------
Expand Down
18 changes: 13 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,33 @@
with open("README.md", "r") as fh:
long_description = fh.read()

install_requires = ['numpy',
install_requires = ['matplotlib',
'numpy',
'scipy',
'six',
'setuptools',
'scikit-learn']

tests_require = ['mxnet',
tests_require = ['keras==2.2.5',
'h5py',
'keras',
'mxnet',
'Pillow',
'requests',
'torch==0.4.0',
'tensorflow',
'torch == 0.4.0']
'xgboost',
'lightgbm',
'GPy',
'SciPy',
# Comment out because of compatibility issues with numpy versions
# 'catboost',
'statsmodels']

docs_require = ['sphinx >= 1.4',
'sphinx_rtd_theme']

setup(name='Adversarial Robustness Toolbox',
version='1.0.0',
version='1.0.1',
description='IBM Adversarial machine learning toolbox',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 9c6ebc6

Please sign in to comment.