Skip to content

Commit

Permalink
Fix a typo in version_commit string (#8145)
Browse files Browse the repository at this point in the history
  • Loading branch information
nden authored Dec 16, 2023
1 parent 3bec2b7 commit b38eeb9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
1.13.1 (unreleased)
===================

-
other
-----

- Fix a typo in ``__version_commit__`` string. [#8145]

1.13.0 (2023-12-15)
===================
Expand Down
2 changes: 1 addition & 1 deletion jwst/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit b38eeb9

Please sign in to comment.