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

Commit

Permalink
bug fix (#113)
Browse files Browse the repository at this point in the history
* bug fix

* prepare for new version
  • Loading branch information
Kamil A. Kaczmarek authored and jakubczakon committed Oct 5, 2018
1 parent 2024748 commit c50d6b9
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.12'
release = '0.1.13'


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

self._validate_upstream_names()
logger.info('Initializing Step {}'.format(self.name))

self.transformer = transformer
Expand All @@ -231,6 +230,7 @@ def __init__(self,
self._prepare_experiment_directories()
self._mode = 'train'

self._validate_upstream_names()
logger.info('Step {} initialized'.format(self.name))

@property
Expand Down

0 comments on commit c50d6b9

Please sign in to comment.