Skip to content

Commit

Permalink
Bugfix release 0.6.9
Browse files Browse the repository at this point in the history
fixed two issues that were introduced in 0.6.8
  • Loading branch information
Qwlouse committed Jan 16, 2016
1 parent ad5eba7 commit ca5e0d7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Release History
---------------

0.6.9 (2016-01-16)
++++++++++++++++++
* Bugfix: fixed support for ``@ex.named_config`` (was broken by 0.6.8)
* Bugfix: fixed handling of captured functions with prefix for failing on
added unused config entries

0.6.8 (2016-01-14)
++++++++++++++++++
* Feature: Added automatic conversion of ``pandas`` datastructures in the
Expand Down
2 changes: 1 addition & 1 deletion sacred/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

__all__ = ("__version__", "__author__", "__author_email__", "__url__")

__version__ = "0.6.8"
__version__ = "0.6.9"

__author__ = 'Klaus Greff'
__author_email__ = 'qwlouse@gmail.com'
Expand Down
6 changes: 3 additions & 3 deletions sacred/initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
from sacred.utils import (convert_to_nested_dict, create_basic_stream_logger,
get_by_dotted_path, is_prefix, iter_path_splits,
iterate_flattened, set_by_dotted_path,
recursive_update, iter_prefixes)
from utils import join_paths
recursive_update, iter_prefixes, join_paths)

__sacred__ = True # marks files that should be filtered from stack traces

Expand All @@ -42,7 +41,8 @@ def __init__(self, config_scopes, subrunners, path, captured_functions,
self.commands = commands
self.config_mods = None
self.summaries = []
self.captured_args = {join_paths(cf.prefix, n) for cf in self._captured_functions
self.captured_args = {join_paths(cf.prefix, n)
for cf in self._captured_functions
for n in cf.signature.arguments}

def set_up_seed(self, rnd=None):
Expand Down

0 comments on commit ca5e0d7

Please sign in to comment.