From cb467a179f1f3969a8ff8198b0a89a03b14b8637 Mon Sep 17 00:00:00 2001 From: Alexey Pechnikov Date: Wed, 31 Jan 2024 13:31:23 +0700 Subject: [PATCH] Add 'utils' module import. Increase library version postfix. --- pygmtsar/pygmtsar/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pygmtsar/pygmtsar/__init__.py b/pygmtsar/pygmtsar/__init__.py index 87b8ee30..093b91db 100644 --- a/pygmtsar/pygmtsar/__init__.py +++ b/pygmtsar/pygmtsar/__init__.py @@ -7,6 +7,8 @@ # # Licensed under the BSD 3-Clause License (see LICENSE for details) # ---------------------------------------------------------------------------- +__version__ = '2024.1.21.post6' + # unified progress indicators from .tqdm_joblib import tqdm_joblib from .tqdm_dask import tqdm_dask @@ -22,5 +24,5 @@ from .ASF import ASF # XYZ tiles downloading from .XYZTiles import XYZTiles - -__version__ = '2024.1.21.post5' +# a set of utils +from .utils import utils