Skip to content

Commit 84db9bb

Browse files
authored
Version bump -> 0.2.1 (Trusted-AI#96)
Change numpy requirement to >=1.16
1 parent 1d9354f commit 84db9bb

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ branches:
1212
- master
1313

1414
install:
15-
- pip install numpy==1.15
1615
- pip install -r requirements.txt
1716
- pip install flake8
1817
- 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# AI Fairness 360 (AIF360 v0.2.0)
1+
# AI Fairness 360 (AIF360 v0.2.1)
22

33
[![Build Status](https://travis-ci.org/IBM/AIF360.svg?branch=master)](https://travis-ci.org/IBM/AIF360)
44
[![Documentation](https://readthedocs.org/projects/aif360/badge/?version=latest)](http://aif360.readthedocs.io/en/latest/?badge=latest)

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ipykernel
55
ipython
66
ipywidgets
77
tqdm
8-
numpy>=1.14,<1.16
8+
numpy>=1.16
99
matplotlib
10-
pandas==0.23.3
10+
pandas>=0.23.3
1111
pytest>=3.5.0
1212
scipy
1313
scikit-learn
@@ -16,6 +16,6 @@ scs==2.1.0
1616
numba==0.42.0
1717
tensorflow>=1.13.1,<2
1818
networkx==1.11
19-
BlackBoxAuditing;python_version>="3"
20-
Orange3>=3.3.5,<=3.7.1;python_version>="3"
19+
BlackBoxAuditing
20+
Orange3>=3.3.5,<=3.7.1
2121
lime

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
We have developed the package with extensibility in mind. This library is still in development. We encourage the
88
contribution of your datasets, metrics, explainers, and debiasing algorithms."""
99

10-
version = '0.2.0'
10+
version = '0.2.1'
1111

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

0 commit comments

Comments
 (0)