Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mxbi committed Sep 23, 2018
1 parent ddcd00b commit 710ac3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mlcrate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from . import time, kaggle, xgb, ensemble#, sklearn

__version__ = '0.1.0'
__version__ = '0.2.0'

def save(data, filename):
"""Pickles the passed data (with the highest available protocol) to disk using the passed filename.
Expand All @@ -19,7 +19,7 @@ def save(data, filename):
folders = os.path.dirname(filename)
if folders:
os.makedirs(folders, exist_ok=True)

fl = filename.lower()
if fl.endswith('.gz'):
if fl.endswith('.feather.gz') or fl.endswith('.fthr.gz'):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='mlcrate',
version='0.1.0',
version='0.2.0',
description='A collection of handy python tools and functions, mainly for ML and Kaggle.',
long_description="For more info, see https://github.com/mxbi/mlcrate",
packages=['mlcrate'],
Expand Down

0 comments on commit 710ac3a

Please sign in to comment.