fix chained dependencies

This commit is contained in:
Valentin Boettcher 2019-05-13 10:23:09 +02:00
parent 87cd049aa4
commit f56f054153
2 changed files with 2 additions and 2 deletions

View file

@ -64,8 +64,8 @@ class SecondaryValue:
continue
tmp = sec_val(**kwargs)
kwargs[name] = tmp[0] if isinstance(tmp, Iterable) else tmp
calc_deps[name] = tmp
kwargs[name] = tmp
return kwargs, calc_deps

View file

@ -6,7 +6,7 @@ def readme():
return f.read()
setup(name='SecondaryValue',
version='0.0.8',
version='0.0.9',
description='A helper to calculate the gaussian error propagation.',
long_description=readme(),
long_description_content_type='text/markdown',