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

Commit

Permalink
bump version number (#268)
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Yu <justinvyu@anyscale.com>
  • Loading branch information
justinvyu committed Jun 30, 2023
1 parent 95071b7 commit 6e813e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.5"']
text = f.readlines() # Returns ['__version__ = "0.4.6"']
__version__ = text[-1].split()[-1].strip("\"'")

VERSION = os.environ.get("TSK_RELEASE_VERSION", __version__)
Expand All @@ -29,4 +29,5 @@
url="https://github.com/ray-project/tune-sklearn",
install_requires=[
"scikit-learn", "scipy", "ray[tune]>=2.0.0", "numpy>=1.16"
])
],
)
2 changes: 1 addition & 1 deletion tune_sklearn/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.5"
__version__ = "0.4.6"

0 comments on commit 6e813e1

Please sign in to comment.