Skip to content

Commit

Permalink
Deploy versioneer 0.29 for python 3.12 compatibility (lanl#64)
Browse files Browse the repository at this point in the history
* Deploy versioneer 0.29

* avoid syntax error warning when loading

The \pi in the doc string triggers the warning
 SyntaxWarning: invalid escape sequence '\p'

---------

Co-authored-by: Sakib Matin <[email protected]>
  • Loading branch information
lubbersnick and sakibmatin authored Apr 10, 2024
1 parent 4d7add5 commit 604a93c
Show file tree
Hide file tree
Showing 5 changed files with 1,087 additions and 505 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
hippynn/_version.py export-subst
5 changes: 2 additions & 3 deletions hippynn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
"""

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']

# Configurational settings
from ._settings_setup import settings
Expand Down
Loading

0 comments on commit 604a93c

Please sign in to comment.