From a684b56b132aa817a52f89599d77bacf304e87fd Mon Sep 17 00:00:00 2001 From: Christian Chwala Date: Mon, 17 Jul 2023 17:49:20 +0200 Subject: [PATCH] prepare for v0.3.7 (#127) --- docs/whats-new.rst | 16 ++++++++++++++++ setup.py | 4 ++-- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/docs/whats-new.rst b/docs/whats-new.rst index 9ba5e48..eb076c0 100644 --- a/docs/whats-new.rst +++ b/docs/whats-new.rst @@ -5,6 +5,22 @@ What's New Unreleased ---------- + + +v0.3.7 +------ + +Maintenance +~~~~~~~~~~~~ +* Change absolute imports of pycomlink to relative imports (by cchwala in PR #119) +* Drop Python 3.7 and Python 3.8 support in CI (by cchwala in PR #120) +* Replaced depreciated np.complex and np.bool (by maxmargraf in PR #122, #123 and #124) + +Bug fixes +~~~~~~~~~ +* Fix problems related to missing pol argument in example workflow (by cchwala in PR #116) + + v0.3.6 ------ diff --git a/setup.py b/setup.py index c3e6ec2..daaf0fd 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def read(fname): setup( name = "pycomlink", - version = "0.3.6", + version = "0.3.7", author = "Christian Chwala", author_email = "christian.chwala@kit.edu", description = ("Python tools for CML (commercial microwave link) data processing"), @@ -28,7 +28,7 @@ def read(fname): keywords = "microwave links precipitation radar cml", url = "https://github.com/pycomlink/pycomlink", download_url = ( - "https://github.com/pycomlink/pycomlink/archive/0.3.6.tar.gz"), + "https://github.com/pycomlink/pycomlink/archive/0.3.7.tar.gz"), packages=find_packages(exclude=['test']), include_package_data=True, long_description=read('README.md'),