Skip to content

Commit

Permalink
Update versioneer from 0.19 to 0.29.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminRodenberg committed Jul 26, 2023
1 parent 117abe1 commit 64af1b9
Show file tree
Hide file tree
Showing 4 changed files with 964 additions and 386 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.

## 2.5.0.3

* Update from versioneer 0.19 to 0.29.
* Add `cimport numpy` to avoid a segmentation fault originating from using Cython v3.0.0. https://github.com/precice/python-bindings/issues/182

## 2.5.0.2
Expand Down
5 changes: 2 additions & 3 deletions precice/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@ def SolverInterface(*args):
warnings.warn("please use precice.Interface to create the interface to C++ preCICE. Note that this function (precice.SolverInterface) does not do anything but throwing this warning. See https://github.com/precice/python-bindings/issues/92 for more information.")


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

0 comments on commit 64af1b9

Please sign in to comment.