From 9505de324e83f0664d3334cecb3d9359945e07dd Mon Sep 17 00:00:00 2001 From: Germano Guerrini Date: Fri, 14 Jun 2024 08:44:44 +0200 Subject: [PATCH 1/2] Updated docs to mention conda-forge --- docs/source/installation.rst | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/source/installation.rst b/docs/source/installation.rst index 16fea89..8f06aa6 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -15,12 +15,18 @@ Get your credentials Install the WEkEO HDA client ---------------------------- -The WEkEO HDA client is a python based library. It provides support for both Python 2.7.x and Python 3. +The WEkEO HDA client is a Python 3 based library. -You can Install the WEkEO HDA client via the package management system pip, by running on Unix/Linux the command shown below. +The package is available both on Pypi and Conda-Forge, so, depending on your requirements you can either install it via pip or via conda: .. code-block:: shell pip install hda +or + + .. conda-block:: shell + + conda install conda-forge::hda + This will also install the required dependencies. \ No newline at end of file From 729ace7971bc04e10e41200984b398435c0fc4b1 Mon Sep 17 00:00:00 2001 From: Germano Guerrini Date: Fri, 14 Jun 2024 08:48:17 +0200 Subject: [PATCH 2/2] Updated version --- docs/source/changelog.rst | 12 ++++++++++++ docs/source/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index c4150a3..b1b043e 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,18 @@ Changelog ========= +Version 2.17 +----------- +* Added Conda-Forge repository + +Version 2.16 +----------- +* Fixed filename extraction in case of enclosing quotes + +Version 2.14 +----------- +* Improved v1 to v2 payload conversion + Version 2.13 ----------- * Fixed missing exception case that could lead to empty files diff --git a/docs/source/conf.py b/docs/source/conf.py index 6ef5c6c..8e76962 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,8 +15,8 @@ copyright = "2023, ECMWF" author = "ECMWF" -release = "2.15" -version = "2.15" +release = "2.17" +version = "2.17" # -- General configuration diff --git a/setup.py b/setup.py index 327f17f..294c698 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ def read(fname): return io.open(file_path, encoding="utf-8").read() -version = "2.16" +version = "2.17" setuptools.setup( name="hda",