From 4c08b49b7115d3af2a8575160347cbc38a20af4d Mon Sep 17 00:00:00 2001 From: Baudouin Raoult Date: Fri, 16 Apr 2021 11:44:28 +0100 Subject: [PATCH] Restore high-level api --- CHANGELOG.rst | 4 ++++ eccodes/eccodes.py | 10 +++++----- gribapi/bindings.py | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index aad44c9..e756cfb 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,10 @@ Changelog for eccodes-python ============================ +1.3.2 (2021-04-16) +-------------------- + +- Restore the experimental high-level interface 1.3.1 (2021-04-16) -------------------- diff --git a/eccodes/eccodes.py b/eccodes/eccodes.py index b81b36b..4cba120 100644 --- a/eccodes/eccodes.py +++ b/eccodes/eccodes.py @@ -216,17 +216,14 @@ from .high_level.gribmessage import GribMessage __all__ = [ - "BufrFile", - "BufrMessage", - "GribFile", - "GribIndex", - "GribMessage", "__version__", "ArrayTooSmallError", "AttributeClashError", "AttributeNotFoundError", "bindings_version", "BufferTooSmallError", + "BufrFile", + "BufrMessage", "CodeNotFoundInTableError", "codes_any_new_from_file", "codes_bufr_copy_data", @@ -363,7 +360,10 @@ "FunctionalityNotEnabledError", "FunctionNotImplementedError", "GeocalculusError", + "GribFile", + "GribIndex", "GribInternalError", + "GribMessage", "HashArrayNoMatchError", "InternalArrayTooSmallError", "InternalError", diff --git a/gribapi/bindings.py b/gribapi/bindings.py index 2cd1dfa..a32df24 100644 --- a/gribapi/bindings.py +++ b/gribapi/bindings.py @@ -20,7 +20,7 @@ import cffi -__version__ = "1.3.1" +__version__ = "1.3.2" LOG = logging.getLogger(__name__)