From d09b56f5b2ffa4b1dc033b3aeabe9608c526b7c0 Mon Sep 17 00:00:00 2001 From: Harsh Bandhey Date: Thu, 2 Mar 2023 16:16:55 -0800 Subject: [PATCH] Final Version --- setup.cfg | 2 +- setup.py | 2 +- src/skrare/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2711095..9703b19 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = scikit-rare -version = 0.9.1 +version = 0.9.2 author = Harsh Bandhey author_email = harsh.bandhey@cshs.org description = A Scikit Learn compatible implementation of RARE Algorithm diff --git a/setup.py b/setup.py index 0f6fde4..cbb5c46 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="scikit-rare", - version="0.9.1", + version="0.9.2", author="Harsh Bandhey", author_email="harsh.bandhey@cshs.org", description="A Scikit Learn compatible implementation of RARE Algorithm", diff --git a/src/skrare/__init__.py b/src/skrare/__init__.py index dd79590..4771745 100644 --- a/src/skrare/__init__.py +++ b/src/skrare/__init__.py @@ -4,6 +4,6 @@ A Scikit Learn compatible implementation of RARE Algorithm. """ -__version__ = "0.9" +__version__ = "0.9.2" __author__ = 'Harsh Bandhey' __credits__ = 'Cedars-Sinai Health Systems'