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

Bump version to 0.5.0 and update Ray Tune lower bound to 2.7.1 #281

Merged
merged 1 commit into from
Nov 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 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.6"']
text = f.readlines() # Returns ['__version__ = "x.x.x"']
__version__ = text[-1].split()[-1].strip("\"'")

VERSION = os.environ.get("TSK_RELEASE_VERSION", __version__)
Expand All @@ -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"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does everything work with 2.7.1 or should we bump to 2.8 now?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2.7.1 is an ok lower bound

],
)
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.6"
__version__ = "0.5.0"
Loading