From d2b9596b1a5671e6cc4cefc98a5fae535e8ce184 Mon Sep 17 00:00:00 2001 From: Justin Yu Date: Thu, 26 Oct 2023 12:11:13 -0700 Subject: [PATCH] Bump version to `0.5.0` and update Ray Tune lower bound to `2.7.1` (#276) Signed-off-by: Justin Yu --- setup.py | 4 ++-- tune_sklearn/_version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 96c5942..d9d924c 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ # depends on Ray, then we create a cyclic dep. # workaround from: https://stackoverflow.com/a/17626524 with open("tune_sklearn/_version.py") as f: - text = f.readlines() # Returns ['__version__ = "0.4.6"'] + text = f.readlines() # Returns ['__version__ = "x.x.x"'] __version__ = text[-1].split()[-1].strip("\"'") VERSION = os.environ.get("TSK_RELEASE_VERSION", __version__) @@ -28,6 +28,6 @@ long_description_content_type="text/markdown", url="https://github.com/ray-project/tune-sklearn", install_requires=[ - "scikit-learn", "scipy", "ray[tune]>=2.0.0", "numpy>=1.16" + "scikit-learn", "scipy", "ray[tune]>=2.7.1", "numpy>=1.16" ], ) diff --git a/tune_sklearn/_version.py b/tune_sklearn/_version.py index 9f918e6..8e58675 100644 --- a/tune_sklearn/_version.py +++ b/tune_sklearn/_version.py @@ -1 +1 @@ -__version__ = "0.4.6" +__version__ = "0.5.0"