Skip to content

Commit 40a5a12

Browse files
authored
Minor update: Fix to CF schema and better tests (#142)
* updated minor version * added version str to setup.py
1 parent fae4d33 commit 40a5a12

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Ramaravind, Amit, Chenhao'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.6'
25+
release = '0.6.1'
2626

2727

2828
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import setuptools
22

3+
VERSION_STR = "0.6.1"
4+
35
with open("README.rst", "r") as fh:
46
long_description = fh.read()
57

@@ -17,15 +19,15 @@
1719

1820
setuptools.setup(
1921
name="dice_ml",
20-
version="0.6",
22+
version=VERSION_STR,
2123
license="MIT",
2224
author="Ramaravind Mothilal, Amit Sharma, Chenhao Tan",
2325
author_email="raam.arvind93@gmail.com",
2426
description="Generate Diverse Counterfactual Explanations for any machine learning model.",
2527
long_description=long_description,
2628
long_description_content_type="text/x-rst",
2729
url="https://github.com/interpretml/DiCE",
28-
download_url="https://github.com/interpretml/DiCE/archive/v0.6.tar.gz",
30+
download_url="https://github.com/interpretml/DiCE/archive/v"+VERSION_STR+".tar.gz",
2931
python_requires='>=3.5',
3032
packages=setuptools.find_packages(),
3133
classifiers=[

0 commit comments

Comments
 (0)