From a1c218923b41236bc2e1848f2fcc0621d9ed997c Mon Sep 17 00:00:00 2001 From: Amit Sharma Date: Wed, 8 Jan 2020 17:19:59 +0530 Subject: [PATCH] updated version number to 0.2 --- dowhy/VERSION | 2 +- dowhy/causal_refuters/data_subset_refuter.py | 0 dowhy/causal_refuters/placebo_treatment_refuter.py | 0 dowhy/causal_refuters/random_common_cause.py | 0 setup.py | 5 ++--- 5 files changed, 3 insertions(+), 4 deletions(-) mode change 100644 => 100755 dowhy/causal_refuters/data_subset_refuter.py mode change 100644 => 100755 dowhy/causal_refuters/placebo_treatment_refuter.py mode change 100644 => 100755 dowhy/causal_refuters/random_common_cause.py diff --git a/dowhy/VERSION b/dowhy/VERSION index 8944524f19..3b04cfb60d 100755 --- a/dowhy/VERSION +++ b/dowhy/VERSION @@ -1 +1 @@ -0.2a1 +0.2 diff --git a/dowhy/causal_refuters/data_subset_refuter.py b/dowhy/causal_refuters/data_subset_refuter.py old mode 100644 new mode 100755 diff --git a/dowhy/causal_refuters/placebo_treatment_refuter.py b/dowhy/causal_refuters/placebo_treatment_refuter.py old mode 100644 new mode 100755 diff --git a/dowhy/causal_refuters/random_common_cause.py b/dowhy/causal_refuters/random_common_cause.py old mode 100644 new mode 100755 diff --git a/setup.py b/setup.py index 33d92b045f..161be44c8b 100755 --- a/setup.py +++ b/setup.py @@ -31,13 +31,12 @@ license='MIT', long_description=long_description, url='https://github.com/microsoft/dowhy', # Optional - download_url='https://github.com/microsoft/dowhy/archive/v0.1.1-alpha.tar.gz', + download_url='https://github.com/microsoft/dowhy/archive/v0.2.tar.gz', author='Amit Sharma, Emre Kiciman', classifiers=[ # Optional 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', @@ -46,7 +45,7 @@ keywords='causality machine-learning causal-inference statistics graphical-model', packages=find_packages(exclude=['docs', 'tests']), - python_requires='>=3.0', + python_requires='>=3.4', install_requires=install_requires, include_package_data=True, package_data={'dowhy':['VERSION']}