Skip to content

Commit

Permalink
Version bump -> 0.2.1 (#96)
Browse files Browse the repository at this point in the history
Change numpy requirement to >=1.16
  • Loading branch information
hoffmansc authored Aug 13, 2019
1 parent 1d9354f commit 84db9bb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ branches:
- master

install:
- pip install numpy==1.15
- pip install -r requirements.txt
- pip install flake8
- if ! wget ${UCI_HTTPS_URL}/adult/adult.data -P aif360/data/raw/adult/ ; then wget ${UCI_FTP_URL}/adult/adult.data -P aif360/data/raw/adult/ ; fi
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# AI Fairness 360 (AIF360 v0.2.0)
# AI Fairness 360 (AIF360 v0.2.1)

[![Build Status](https://travis-ci.org/IBM/AIF360.svg?branch=master)](https://travis-ci.org/IBM/AIF360)
[![Documentation](https://readthedocs.org/projects/aif360/badge/?version=latest)](http://aif360.readthedocs.io/en/latest/?badge=latest)
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ ipykernel
ipython
ipywidgets
tqdm
numpy>=1.14,<1.16
numpy>=1.16
matplotlib
pandas==0.23.3
pandas>=0.23.3
pytest>=3.5.0
scipy
scikit-learn
Expand All @@ -16,6 +16,6 @@ scs==2.1.0
numba==0.42.0
tensorflow>=1.13.1,<2
networkx==1.11
BlackBoxAuditing;python_version>="3"
Orange3>=3.3.5,<=3.7.1;python_version>="3"
BlackBoxAuditing
Orange3>=3.3.5,<=3.7.1
lime
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
We have developed the package with extensibility in mind. This library is still in development. We encourage the
contribution of your datasets, metrics, explainers, and debiasing algorithms."""

version = '0.2.0'
version = '0.2.1'

with open("aif360/version.py", 'w') as f:
f.write('# generated by setup.py\nversion = "{}"\n'.format(version))
Expand All @@ -24,9 +24,9 @@
packages=[pkg for pkg in find_packages() if pkg.startswith('aif360')],
# python_requires='>=3.5, <3.7',
install_requires=[
'numpy>=1.14,<1.16',
'numpy>=1.16',
'scipy',
'pandas==0.23.3',
'pandas>=0.23.3',
'scikit-learn',
],
package_data={'aif360': ['data/*', 'data/*/*', 'data/*/*/*']},
Expand Down

0 comments on commit 84db9bb

Please sign in to comment.