From 9983319a90af68ef6563368af0959a7b2f74ec98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Wed, 5 Feb 2020 19:10:48 +0100 Subject: [PATCH] ver bump --- CHANGELOG.md | 4 ++++ satella/__init__.py | 3 +-- satella/instrumentation/__init__.py | 3 --- setup.py | 1 - tests/test_instrumentation/test_metrics/__init__.py | 1 - tests/test_posix/hang_until_sig.py | 1 - 6 files changed, 5 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dbde036..48a3cecb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v2.3.7 + +* _TBA_ + # v2.3.6 * bugfix release - wrong annotation mechanics diff --git a/satella/__init__.py b/satella/__init__.py index c27a7106..4f2fd6e5 100644 --- a/satella/__init__.py +++ b/satella/__init__.py @@ -1,2 +1 @@ -# coding=UTF-8 -__version__ = '2.3.6' +__version__ = '2.3.7rc1' diff --git a/satella/instrumentation/__init__.py b/satella/instrumentation/__init__.py index dfa68ef0..8273d098 100644 --- a/satella/instrumentation/__init__.py +++ b/satella/instrumentation/__init__.py @@ -1,11 +1,8 @@ -# coding=UTF-8 """ All things related to: * post-mortem reporting * on-line reporting """ -from __future__ import print_function, absolute_import, division - from .dump_frames_on import install_dump_frames_on from .trace_back import Traceback, StoredVariableValue, StackFrame, GenerationPolicy diff --git a/setup.py b/setup.py index c6b07c9e..0499463b 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,3 @@ -# coding=UTF-8 from setuptools import setup, find_packages from satella import __version__ diff --git a/tests/test_instrumentation/test_metrics/__init__.py b/tests/test_instrumentation/test_metrics/__init__.py index a55927c0..84fe512d 100644 --- a/tests/test_instrumentation/test_metrics/__init__.py +++ b/tests/test_instrumentation/test_metrics/__init__.py @@ -84,7 +84,6 @@ class TestMetric(unittest.TestCase): def testInheritance(self): metric = getMetric('root.test.FloatValue', 'float', INHERIT, enable_timestamp=False) - logger.warning('After') metric.runtime(2.0) metric_parent = getMetric('root.test', enable_timestamp=False) diff --git a/tests/test_posix/hang_until_sig.py b/tests/test_posix/hang_until_sig.py index 036ab89a..614ac6e4 100644 --- a/tests/test_posix/hang_until_sig.py +++ b/tests/test_posix/hang_until_sig.py @@ -1,4 +1,3 @@ -# coding=UTF-8 from satella.posix import hang_until_sig if __name__ == '__main__': -- GitLab