From d5d1a1a763c83ffc1cd88e60ff9df79499b3b875 Mon Sep 17 00:00:00 2001 From: qwlouse Date: Tue, 12 Jun 2018 08:02:48 +0200 Subject: [PATCH] Bugfix release 0.7.4 --- HISTORY.rst | 7 +++++++ sacred/__about__.py | 2 +- sacred/run.py | 5 ++--- sacred/utils.py | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index f2dd6b0d..de8cebba 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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) diff --git a/sacred/__about__.py b/sacred/__about__.py index ef668bb5..62e4f492 100644 --- a/sacred/__about__.py +++ b/sacred/__about__.py @@ -11,7 +11,7 @@ __all__ = ("__version__", "__author__", "__author_email__", "__url__") -__version__ = "0.7.3" +__version__ = "0.7.4" __author__ = 'Klaus Greff' __author_email__ = 'klaus.greff@startmail.com' diff --git a/sacred/run.py b/sacred/run.py index 77518d7e..dfba3cc6 100755 --- a/sacred/run.py +++ b/sacred/run.py @@ -2,7 +2,6 @@ # coding=utf-8 from __future__ import division, print_function, unicode_literals -import atexit import datetime import os.path import sys @@ -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 diff --git a/sacred/utils.py b/sacred/utils.py index 3fe28778..53d10931 100755 --- a/sacred/utils.py +++ b/sacred/utils.py @@ -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: