From 6945b90b66e1a7ae2d758801540d76224405d226 Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Tue, 5 Oct 2021 11:11:17 -0300 Subject: [PATCH 1/2] PYTHON: Export WriteVTK through the AmunPy interface. Signed-off-by: Grzegorz Kowal --- python/amunpy/src/amunpy/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/amunpy/src/amunpy/__init__.py b/python/amunpy/src/amunpy/__init__.py index 8e7ba0c..86d808a 100644 --- a/python/amunpy/src/amunpy/__init__.py +++ b/python/amunpy/src/amunpy/__init__.py @@ -14,8 +14,9 @@ from .amunxml import * from .amunh5 import * from .amunh5_deprecated import * from .integrals import * +from .vtkio import * -__all__ = [ 'AmunXML', 'AmunH5', \ +__all__ = [ 'AmunXML', 'AmunH5', 'WriteVTK', \ 'amun_attribute', 'amun_coordinate', 'amun_dataset', 'amun_dataset_vtk', 'amun_integrals' ] __author__ = "Grzegorz Kowal" From c2c9c37b45832bac424d5408acecef7fb55733b8 Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Tue, 5 Oct 2021 11:12:07 -0300 Subject: [PATCH 2/2] PYTHON: Version 0.9.2 Signed-off-by: Grzegorz Kowal --- python/amunpy/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/amunpy/setup.py b/python/amunpy/setup.py index 7d55fc0..4f1ac76 100644 --- a/python/amunpy/setup.py +++ b/python/amunpy/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh: setuptools.setup( name="amunpy", - version="0.9.1", + version="0.9.2", author="Grzegorz Kowal", author_email="grzegorz@amuncode.org", description="Python Interface for the AMUN code's snapshots",