This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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.1"'] | ||
text = f.readlines() # Returns ['__version__ = "0.4.3"'] | ||
__version__ = text[-1].split()[-1].strip("\"'") | ||
|
||
VERSION = os.environ.get("TSK_RELEASE_VERSION", __version__) | ||
|
@@ -19,7 +19,7 @@ | |
version=VERSION, | ||
author="Michael Chau, Anthony Yu, and Ray Team", | ||
author_email="[email protected]", | ||
description=("A drop-in replacement for Scikit-Learn’s " | ||
description=("A drop-in replacement for Scikit-Learn's " | ||
"GridSearchCV / RandomizedSearchCV with cutting edge " | ||
"hyperparameter tuning techniques."), | ||
long_description=io.open( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.4.2" | ||
__version__ = "0.4.3" |