From 183e2603eb8feb8cdacc05eac0ee8bc4912ea160 Mon Sep 17 00:00:00 2001 From: Germano Guerrini Date: Tue, 23 Apr 2024 09:20:29 +0200 Subject: [PATCH] Version 2.14 --- docs/source/conf.py | 4 ++-- hda/api.py | 5 +---- setup.py | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 7782a74..2f7b681 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,8 +15,8 @@ copyright = "2023, ECMWF" author = "ECMWF" -release = "2.13" -version = "2.13" +release = "2.14" +version = "2.14" # -- General configuration diff --git a/hda/api.py b/hda/api.py index 5567d37..7c71233 100644 --- a/hda/api.py +++ b/hda/api.py @@ -320,10 +320,7 @@ def __init__( verify=True, path=None, ): - credentials = { - "user": None, - "password": None - } + credentials = {"user": None, "password": None} dotrc = path or os.environ.get("HDA_RC", os.path.expanduser("~/.hdarc")) diff --git a/setup.py b/setup.py index 23b2be6..89b323e 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.13" +version = "2.14" setuptools.setup( name="hda",