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

Commit 6e813e1

Browse files
authored
bump version number (#268)
Signed-off-by: Justin Yu <justinvyu@anyscale.com>
1 parent 95071b7 commit 6e813e1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

setup.py

Lines changed: 3 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.5"']
11+
text = f.readlines() # Returns ['__version__ = "0.4.6"']
1212
__version__ = text[-1].split()[-1].strip("\"'")
1313

1414
VERSION = os.environ.get("TSK_RELEASE_VERSION", __version__)
@@ -29,4 +29,5 @@
2929
url="https://github.com/ray-project/tune-sklearn",
3030
install_requires=[
3131
"scikit-learn", "scipy", "ray[tune]>=2.0.0", "numpy>=1.16"
32-
])
32+
],
33+
)

tune_sklearn/_version.py

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

0 commit comments

Comments
 (0)