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

Commit 97ab860

Browse files
Kamil A. Kaczmarekjakubczakon
Kamil A. Kaczmarek
authored andcommitted
Dev s14 (#114)
* prepare 0.1.14 * make log entry instead of error
1 parent c50d6b9 commit 97ab860

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-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.13'
29+
release = '0.1.14'
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.13',
16+
version='0.1.14',
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.13.tar.gz',
20+
download_url='https://github.com/minerva-ml/steppy/archive/0.1.14.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

+2-1
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,8 @@ def _validate_step_name(self, name):
661661

662662
def _check_name_uniqueness(self, all_steps):
663663
if self.name in all_steps.keys():
664-
raise ValueError('Step with name "{}", already exist. Assign unique Step name.'.format(self.name))
664+
logger.info('STEPPY WARNING: Step with name "{}", already exist. '
665+
'Make sure that all Steps have unique name.'.format(self.name))
665666

666667
def _validate_upstream_names(self):
667668
try:

0 commit comments

Comments
 (0)