From b38eeb9ab499426fd15f0f58f7076b78c217983c Mon Sep 17 00:00:00 2001 From: Nadia Dencheva Date: Fri, 15 Dec 2023 20:15:04 -0500 Subject: [PATCH] Fix a typo in version_commit string (#8145) --- CHANGES.rst | 5 ++++- jwst/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index cf747cbbfe..022967c3d6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,10 @@ 1.13.1 (unreleased) =================== -- +other +----- + +- Fix a typo in ``__version_commit__`` string. [#8145] 1.13.0 (2023-12-15) =================== diff --git a/jwst/__init__.py b/jwst/__init__.py index 4320a4c8eb..8ec268c7e6 100644 --- a/jwst/__init__.py +++ b/jwst/__init__.py @@ -5,7 +5,7 @@ __version__ = version(__name__) _regex_git_hash = re.compile(r".*\+g(\w+)") -__version__commit__ = "" +__version_commit__ = "" if "+" in __version__: commit = _regex_git_hash.match(__version__).groups() if commit: