Skip to content

Commit

Permalink
Bugfix release 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Qwlouse committed Jun 12, 2018
1 parent 9f4bcb4 commit d5d1a1a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release History
---------------

0.7.4 (2018-06-12)
++++++++++++++++++
* Bugfix: fixed problem with postgres backend of SQLObserver (thanks @bensternlieb)
* Bugfix: fixed a problem with the interaction of ingredients and named configs
* Feature: added metrics logging to the FileStorageObserver (thanks @ummavi)


0.7.3 (2018-05-06)
++++++++++++++++++
* Feature: support custom experiment base directory (thanks @anibali)
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.7.3"
__version__ = "0.7.4"

__author__ = 'Klaus Greff'
__author_email__ = '[email protected]'
Expand Down
5 changes: 2 additions & 3 deletions sacred/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# coding=utf-8
from __future__ import division, print_function, unicode_literals

import atexit
import datetime
import os.path
import sys
Expand All @@ -11,8 +10,8 @@
from sacred import metrics_logger
from sacred.metrics_logger import linearize_metrics
from sacred.randomness import set_global_seed
from sacred.utils import SacredInterrupt, join_paths, \
IntervalTimer
from sacred.utils import (SacredInterrupt, join_paths,
IntervalTimer)
from sacred.stdout_capturing import get_stdcapturer


Expand Down
2 changes: 1 addition & 1 deletion sacred/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"print_filtered_stacktrace", "is_subdir",
"optional_kwargs_decorator", "get_inheritors",
"apply_backspaces_and_linefeeds", "StringIO", "FileNotFoundError",
"rel_path"]
"rel_path", "IntervalTimer"]

# A PY2 compatible basestring, int_types and FileNotFoundError
if sys.version_info[0] == 2:
Expand Down

0 comments on commit d5d1a1a

Please sign in to comment.