From 862acfc2c958007397c45271ee3a3e666166a450 Mon Sep 17 00:00:00 2001 From: Felix Date: Mon, 27 May 2024 21:11:47 +0200 Subject: [PATCH] updated version to 0.1.2 --- python/naiveautoml/__init__.py | 2 +- python/setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/naiveautoml/__init__.py b/python/naiveautoml/__init__.py index 605a1fb..3510fcb 100644 --- a/python/naiveautoml/__init__.py +++ b/python/naiveautoml/__init__.py @@ -1,4 +1,4 @@ from .naiveautoml import NaiveAutoML __all__ = ["NaiveAutoML"] -__version__ = "0.1.1" +__version__ = "0.1.2" diff --git a/python/setup.py b/python/setup.py index 31b7979..7bcc6aa 100644 --- a/python/setup.py +++ b/python/setup.py @@ -4,7 +4,7 @@ setup( name = 'naiveautoml', packages = find_packages(exclude=["test"]), - version = '0.1.1', + version = '0.1.2', license='MIT', description = 'Fast and Timeout-Free Automated Machine Learning for Multi-Class classification, Multi-Label classification, and regression.', author = 'Felix Mohr',