From 84db9bb4e47684905ac3e37cacde2c0b6c0776b6 Mon Sep 17 00:00:00 2001 From: Samuel Hoffman Date: Mon, 12 Aug 2019 22:27:28 -0400 Subject: [PATCH] Version bump -> 0.2.1 (#96) Change numpy requirement to >=1.16 --- .travis.yml | 1 - README.md | 2 +- requirements.txt | 8 ++++---- setup.py | 6 +++--- 4 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index de27edc9..9aa44262 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/README.md b/README.md index dbcf00a9..97a74c6e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/requirements.txt b/requirements.txt index d5ef979e..550427a4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 @@ -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 diff --git a/setup.py b/setup.py index 6a101a0b..1e8780f5 100644 --- a/setup.py +++ b/setup.py @@ -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)) @@ -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/*/*/*']},