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/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 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",