From b16dbbbdebe5aeeb013a2e5e0ea4f31d29ea5095 Mon Sep 17 00:00:00 2001 From: William Jamieson Date: Tue, 31 Oct 2023 12:36:39 -0400 Subject: [PATCH] Update changes --- CHANGES.rst | 4 +++- src/stpipe/extern/configobj.py | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 709c2e7c..22c86763 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,9 @@ ================== - Update style and linting checking [#103] +- Fix regex issue in internal configobj [#108] +- Remove bundled ``configobj`` package in favor of the ``configobj`` package + bundled into ``astropy``. [#122] 0.5.1 (2023-10-02) ================== @@ -11,7 +14,6 @@ - Move ``strun`` to entrypoints [#101] - Deprecate ``preserve_comments`` fix spec parsing for inline comments with a closing parenthesis [#107] -- Fix regex issue in internal configobj [#108] 0.5.0 (2023-04-19) ================== diff --git a/src/stpipe/extern/configobj.py b/src/stpipe/extern/configobj.py index 4a839e4b..d0ca8701 100644 --- a/src/stpipe/extern/configobj.py +++ b/src/stpipe/extern/configobj.py @@ -16,4 +16,5 @@ "stpipe.extern.configobj is deprecated in favor of astropy.extern.configobj, " "please use that instead.", DeprecationWarning, + stacklevel=2, )