Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

Commit

Permalink
S10 (#107)
Browse files Browse the repository at this point in the history
* persist is with joblib by default

* Update setup.py

* Update conf.py
  • Loading branch information
Kamil A. Kaczmarek authored Sep 27, 2018
1 parent 350da72 commit 29665ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = '0.1'
# The full version, including alpha/beta/rc tags
release = '0.1.9'
release = '0.1.10'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@

setup(name='steppy',
packages=['steppy'],
version='0.1.9',
version='0.1.10',
description='A lightweight, open-source, Python library for fast and reproducible experimentation',
long_description=long_description,
url='https://github.com/minerva-ml/steppy',
download_url='https://github.com/minerva-ml/steppy/archive/0.1.9.tar.gz',
download_url='https://github.com/minerva-ml/steppy/archive/0.1.10.tar.gz',
author='Kamil A. Kaczmarek, Jakub Czakon',
author_email='[email protected], [email protected]',
keywords=['machine-learning', 'reproducibility', 'pipeline', 'data-science'],
Expand Down
2 changes: 1 addition & 1 deletion steppy/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ def persist(self, filepath):
Args:
filepath (str): filepath where the transformer parameters should be persisted
"""
raise NotImplementedError
joblib.dump({}, filepath)


class StepError(Exception):
Expand Down

0 comments on commit 29665ed

Please sign in to comment.