bump: version 5.2.0a20 → 5.2.0a21
This commit is contained in:
parent
e39b8106be
commit
7af43a1e19
3 changed files with 5 additions and 2 deletions
|
|
@ -4,7 +4,7 @@ requires = ["flit_core >=3.8.0,<4"]
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "tiramisu"
|
name = "tiramisu"
|
||||||
version = "5.2.0a20"
|
version = "5.2.0a21"
|
||||||
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
authors = [{name = "Emmanuel Garette", email = "gnunux@gnunux.info"}]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
description = "an options controller tool"
|
description = "an options controller tool"
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
__version__ = "5.2.0a20"
|
__version__ = "5.2.0a21"
|
||||||
|
|
|
||||||
|
|
@ -630,14 +630,17 @@ def manager_callback(
|
||||||
for subconfig_ in subconfigs:
|
for subconfig_ in subconfigs:
|
||||||
if subconfig.path == subconfig_.path:
|
if subconfig.path == subconfig_.path:
|
||||||
values.append(orig_value)
|
values.append(orig_value)
|
||||||
|
print("arfeuuuu", orig_value)
|
||||||
else:
|
else:
|
||||||
subconfig_.properties = properties
|
subconfig_.properties = properties
|
||||||
|
print('ah ahhhhh')
|
||||||
values.append(get_value(
|
values.append(get_value(
|
||||||
config_bag,
|
config_bag,
|
||||||
subconfig_,
|
subconfig_,
|
||||||
param,
|
param,
|
||||||
True,
|
True,
|
||||||
))
|
))
|
||||||
|
print("arf", values)
|
||||||
if callback.__name__ not in FUNCTION_WAITING_FOR_DICT:
|
if callback.__name__ not in FUNCTION_WAITING_FOR_DICT:
|
||||||
return values
|
return values
|
||||||
return {"name": search_option.impl_get_display_name(subconfig), "value": values}
|
return {"name": search_option.impl_get_display_name(subconfig), "value": values}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue