-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PARO-736] Bump version to 0.2.0 (#49)
* MAINT bump version to 0.2.0 * MAINT fix README * FIX package name is civisml-extensions, not civismlext * MAINT show installed packages in Travis CI builds
- Loading branch information
1 parent
5539ed2
commit abb83cf
Showing
6 changed files
with
28 additions
and
12 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
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
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
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,6 +1,19 @@ | ||
from civismlext.stacking import StackedRegressor # NOQA | ||
from civismlext.stacking import StackedClassifier # NOQA | ||
from civismlext.nonnegative import NonNegativeLinearRegression # NOQA | ||
from civismlext.hyperband import HyperbandSearchCV # NOQA | ||
from civismlext.preprocessing import DataFrameETL # NOQA | ||
from civismlext._version import __version__ # NOQA | ||
import pkg_resources | ||
|
||
from civismlext.stacking import StackedRegressor | ||
from civismlext.stacking import StackedClassifier | ||
from civismlext.nonnegative import NonNegativeLinearRegression | ||
from civismlext.hyperband import HyperbandSearchCV | ||
from civismlext.preprocessing import DataFrameETL | ||
|
||
|
||
__version__ = pkg_resources.get_distribution('civisml-extensions').version | ||
|
||
__all__ = [ | ||
'StackedRegressor', | ||
'StackedClassifier', | ||
'NonNegativeLinearRegression', | ||
'HyperbandSearchCV', | ||
'DataFrameETL', | ||
'__version__', | ||
] |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,10 +7,9 @@ def read(fname): | |
return _in.read() | ||
|
||
|
||
__version__ = None | ||
exec(read('civismlext/_version.py')) | ||
_VERSION = '0.2.0' | ||
|
||
setup(version=__version__, | ||
setup(version=_VERSION, | ||
name="civisml-extensions", | ||
author="Civis Analytics", | ||
author_email="[email protected]", | ||
|