From ccc2e4274d5f44dd39eca472fa3c03c43649d154 Mon Sep 17 00:00:00 2001 From: lshpaner Date: Tue, 27 Aug 2024 11:44:55 -0700 Subject: [PATCH] versioned to 0.0.14a --- README.md | 2 +- setup.py | 4 ++-- src/model_tuner/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 620e714..048d6a6 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ If you use `model_tuner` in your research or projects, please consider citing it month = jul, year = 2024, publisher = {Zenodo}, - version = {0.0.13a}, + version = {0.0.14a}, doi = {10.5281/zenodo.12727322}, url = {https://doi.org/10.5281/zenodo.12727322} } diff --git a/setup.py b/setup.py index 6dd70b9..f863e1a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="model_tuner", - version="0.0.13a", + version="0.0.14a", 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.", @@ -12,7 +12,7 @@ # Automatically find packages in the specified directory packages=find_packages(where="src"), project_urls={ # Optional - # "Author Website": "https://www.leonshpaner.com", + "Author Website": "https://www.mii.ucla.edu/", "Documentation": "https://uclamii.github.io/model_tuner", "Zenodo Archive": "https://zenodo.org/doi/10.5281/zenodo.12727322", "Source Code": "https://github.com/uclamii/model_tuner/", diff --git a/src/model_tuner/__init__.py b/src/model_tuner/__init__.py index 67587db..e7c9b10 100644 --- a/src/model_tuner/__init__.py +++ b/src/model_tuner/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.0.13a" +__version__ = "0.0.14a" from .main import *