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

Commit 29665ed

Browse files
author
Kamil A. Kaczmarek
authored
S10 (#107)
* persist is with joblib by default * Update setup.py * Update conf.py
1 parent 350da72 commit 29665ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = '0.1'
2828
# The full version, including alpha/beta/rc tags
29-
release = '0.1.9'
29+
release = '0.1.10'
3030

3131

3232
# -- General configuration ---------------------------------------------------

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313

1414
setup(name='steppy',
1515
packages=['steppy'],
16-
version='0.1.9',
16+
version='0.1.10',
1717
description='A lightweight, open-source, Python library for fast and reproducible experimentation',
1818
long_description=long_description,
1919
url='https://github.com/minerva-ml/steppy',
20-
download_url='https://github.com/minerva-ml/steppy/archive/0.1.9.tar.gz',
20+
download_url='https://github.com/minerva-ml/steppy/archive/0.1.10.tar.gz',
2121
author='Kamil A. Kaczmarek, Jakub Czakon',
2222
author_email='kamil.kaczmarek@neptune.ml, jakub.czakon@neptune.ml',
2323
keywords=['machine-learning', 'reproducibility', 'pipeline', 'data-science'],

steppy/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ def persist(self, filepath):
790790
Args:
791791
filepath (str): filepath where the transformer parameters should be persisted
792792
"""
793-
raise NotImplementedError
793+
joblib.dump({}, filepath)
794794

795795

796796
class StepError(Exception):

0 commit comments

Comments
 (0)