Skip to content
This repository was archived by the owner on Nov 14, 2023. It is now read-only.

Commit b4fd126

Browse files
authored
Bump version to 0.5.0 and update Ray Tune lower bound to 2.7.1 (#281)
1 parent f309725 commit b4fd126

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# depends on Ray, then we create a cyclic dep.
99
# workaround from: https://stackoverflow.com/a/17626524
1010
with open("tune_sklearn/_version.py") as f:
11-
text = f.readlines() # Returns ['__version__ = "0.4.6"']
11+
text = f.readlines() # Returns ['__version__ = "x.x.x"']
1212
__version__ = text[-1].split()[-1].strip("\"'")
1313

1414
VERSION = os.environ.get("TSK_RELEASE_VERSION", __version__)
@@ -28,6 +28,6 @@
2828
long_description_content_type="text/markdown",
2929
url="https://github.com/ray-project/tune-sklearn",
3030
install_requires=[
31-
"scikit-learn", "scipy", "ray[tune]>=2.0.0", "numpy>=1.16"
31+
"scikit-learn", "scipy", "ray[tune]>=2.7.1", "numpy>=1.16"
3232
],
3333
)

tune_sklearn/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.6"
1+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)