We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5be3db5 commit df9422fCopy full SHA for df9422f
2 files changed
doc/source/changelog.rst
@@ -21,6 +21,8 @@ organisation on `GitHub <https://github.com/openbiosim/sire>`__.
21
22
* Fix ``delta`` parameter in soft-core Coulomb potential.
23
24
+* Fix recursion bug in :func:`sire.base.wrap()` function.
25
+
26
`2025.3.0 <https://github.com/openbiosim/sire/compare/2025.2.0...2025.3.0>`__ - November 2025
27
---------------------------------------------------------------------------------------------
28
wrapper/Base/__init__.py
@@ -39,7 +39,7 @@ def wrap(value):
39
u = _Units.GeneralUnit(value)
40
41
if not u.is_dimensionless():
42
- return wrap(u)
+ return _base_wrap(u)
43
except Exception:
44
pass
45
0 commit comments