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

Commit c50d6b9

Browse files
Kamil A. Kaczmarekjakubczakon
Kamil A. Kaczmarek
authored andcommitted
bug fix (#113)
* bug fix * prepare for new version
1 parent 2024748 commit c50d6b9

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.12'
29+
release = '0.1.13'
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.12',
16+
version='0.1.13',
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.12.tar.gz',
20+
download_url='https://github.com/minerva-ml/steppy/archive/0.1.13.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
@@ -212,7 +212,6 @@ def __init__(self,
212212
assert isinstance(force_fitting, bool), 'Step {} error, force_fitting must be bool, ' \
213213
'got {} instead.'.format(self.name, type(force_fitting))
214214

215-
self._validate_upstream_names()
216215
logger.info('Initializing Step {}'.format(self.name))
217216

218217
self.transformer = transformer
@@ -231,6 +230,7 @@ def __init__(self,
231230
self._prepare_experiment_directories()
232231
self._mode = 'train'
233232

233+
self._validate_upstream_names()
234234
logger.info('Step {} initialized'.format(self.name))
235235

236236
@property

0 commit comments

Comments
 (0)