Skip to content

Commit

Permalink
Hotfix for 0.8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
adrybakov committed Nov 23, 2023
1 parent a3cdbd0 commit c59a9b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/source/release-notes/0.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,9 @@ Move from `setup.py`` to ``pyproject.toml``.
0.8.11
------

Bugfix in :py:func:`.dump_ucf`. - number of materials was not written. It is working properly now.
Bugfix in :py:func:`.dump_ucf`. - number of materials was not written. It is working properly now. SKIP, install 0.8.12 instead.

0.8.12
------

Hotfix for 0.8.11 (Missed imports).
4 changes: 2 additions & 2 deletions radtools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"""


__version__ = "0.8.11"
__version__ = "0.8.12"
__doclink__ = "rad-tools.org"
__git_hash__ = "381e74c149f8c8f2eabb82b012c1cca4e1de78fe"
__git_hash__ = "a3cdbd0d8329db7bf3cd0315727e1018cae2d4e5"
__release_date__ = "23 November 2023"


Expand Down
2 changes: 2 additions & 0 deletions radtools/io/vampire.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@

__all__ = ["dump_vampire", "dump_mat", "dump_ucf"]

import numpy as np

from radtools.decorate.array import print_2d_array
from radtools.decorate.stats import logo
from radtools.spinham.parameter import ExchangeParameter
Expand Down

0 comments on commit c59a9b2

Please sign in to comment.