Skip to content

Commit

Permalink
Minor update: Fix to CF schema and better tests (#142)
Browse files Browse the repository at this point in the history
* updated minor version

* added version str to setup.py
  • Loading branch information
amit-sharma committed May 10, 2021
1 parent fae4d33 commit 40a5a12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Ramaravind, Amit, Chenhao'

# The full version, including alpha/beta/rc tags
release = '0.6'
release = '0.6.1'


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import setuptools

VERSION_STR = "0.6.1"

with open("README.rst", "r") as fh:
long_description = fh.read()

Expand All @@ -17,15 +19,15 @@

setuptools.setup(
name="dice_ml",
version="0.6",
version=VERSION_STR,
license="MIT",
author="Ramaravind Mothilal, Amit Sharma, Chenhao Tan",
author_email="raam.arvind93@gmail.com",
description="Generate Diverse Counterfactual Explanations for any machine learning model.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/interpretml/DiCE",
download_url="https://github.com/interpretml/DiCE/archive/v0.6.tar.gz",
download_url="https://github.com/interpretml/DiCE/archive/v"+VERSION_STR+".tar.gz",
python_requires='>=3.5',
packages=setuptools.find_packages(),
classifiers=[
Expand Down

0 comments on commit 40a5a12

Please sign in to comment.