ray-project / tune-sklearn

A drop-in replacement for Scikit-Learn’s GridSearchCV / RandomizedSearchCV -- but with cutting edge hyperparameter tuning techniques.
https://docs.ray.io/en/master/tune/api_docs/sklearn.html
Apache License 2.0
465 stars 52 forks source link

Bump version for 0.2.0 release #162

Closed richardliaw closed 3 years ago

richardliaw commented 3 years ago

Bump to 0.2.0!

richardliaw commented 3 years ago

So that it is easy to do release candidates :)

On Thu, Dec 17, 2020 at 1:21 AM Kai Fricke notifications@github.com wrote:

@krfricke approved this pull request.

I just have a question regarding the env variable.

In setup.py https://github.com/ray-project/tune-sklearn/pull/162#discussion_r544932137 :

@@ -1,12 +1,23 @@ -from setuptools import setup +import io +import os +from setuptools import setup, find_packages +from tune_sklearn import version + +ROOT_DIR = os.path.dirname(file) + +VERSION = os.environ.get("TSK_RELEASE_VERSION", version)

Why are we checking for this environment variable?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/ray-project/tune-sklearn/pull/162#pullrequestreview-554413240, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABCRZZLIPYNLAT3NSGQT2RTSVHEP3ANCNFSM4U62GMLQ .