Skip to content

Commit

Permalink
Merge b350d8e into 0464c24
Browse files Browse the repository at this point in the history
  • Loading branch information
Shlomi Hod committed Aug 4, 2019
2 parents 0464c24 + b350d8e commit 0fd225d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Revision History
================

0.1.1 (2019/08/04)
------------------

- Fix a dependencies issue with ``smart_open``

- Change URLs to https

0.1.0 (2019/07/31)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Responsibly
:target: https://pypi.org/project/responsibly

.. image:: https://img.shields.io/github/license/ResponsiblyAI/responsibly.svg
:target: http://docs.responsibly.ai/about/license.html
:target: https://docs.responsibly.ai/about/license.html

**Toolkit for Auditing and Mitigating Bias and Fairness**
**of Machine Learning Systems 🔎🤖🧰**
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# -- Project information -----------------------------------------------------

project = 'Responsibly'
copyright = '2019, Shlomi Hod'
copyright = '2018, Shlomi Hod'
author = 'Shlomi Hod'

# The short X.Y version
Expand Down
6 changes: 3 additions & 3 deletions responsibly/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

__project__ = 'responsibly'
__description__ = 'Toolkit for Auditing and Mitigating Bias and Fairness of Machine Learning Systems 🔎🤖🧰'
__url__ = 'http://docs.responsibly.ai'
__version__ = '0.1.0'
__url__ = 'https://docs.responsibly.ai'
__version__ = '0.1.1'
__author__ = 'Shlomi Hod'
__author_email__ = 'shlomi.hod@gmail.com'
__license__ = 'MIT'
__copyright__ = 'Copyright 2019 Shlomi Hod'
__copyright__ = 'Copyright 2018 Shlomi Hod'

VERSION = "{0} v{1}".format(__project__, __version__)
2 changes: 1 addition & 1 deletion responsibly/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# @click.command()
# def main():
# click.echo('http://docs.responsibly.ai')
# click.echo('https://docs.responsibly.ai')
#
#
# if __name__ == '__main__': # pragma: no cover
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ def build_description():
"matplotlib >= 2.2, < 3",
"seaborn >= 0.9",
"scikit-learn >= 0.19",
"smart_open < 1.8",
"gensim >= 3.7",
"tabulate >= 0.8",
"six >= 1.10",
Expand Down

0 comments on commit 0fd225d

Please sign in to comment.