From 1de26d6b124ca50b39e172d861ae6586a63d445a Mon Sep 17 00:00:00 2001 From: lshpaner Date: Tue, 2 Jul 2024 16:35:59 -0700 Subject: [PATCH] updated release version to 0.0.5a0 --- setup.py | 2 +- src/model_tuner/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4d02c15..13164ac 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="model_tuner", - version="0.0.04a", + version="0.0.05a", author="UCLA CTSI ML Team: Leonid Shpaner, Arthur Funnell, Panayiotis Petousis", author_email="pp89@ucla.edu", description="A Python library for tuning Machine Learning models.", diff --git a/src/model_tuner/__init__.py b/src/model_tuner/__init__.py index a561fdd..9a93f0c 100644 --- a/src/model_tuner/__init__.py +++ b/src/model_tuner/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.0.04a" +__version__ = "0.0.05a" from .main import *