From ae84664a1a12719bae3ce03ed796a14619fae4fe Mon Sep 17 00:00:00 2001 From: Chaithya G R Date: Mon, 8 Jan 2024 11:46:00 +0100 Subject: [PATCH 1/2] Update wavelet.py Move to float64 to have compatibility with latest numpy --- astro/denoising/wavelet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astro/denoising/wavelet.py b/astro/denoising/wavelet.py index 86af0a2..fa3ba7f 100644 --- a/astro/denoising/wavelet.py +++ b/astro/denoising/wavelet.py @@ -79,7 +79,7 @@ def decompose(data, n_scales=4): trans.data = data trans.analysis() - res = np.array(trans.analysis_data, dtype=np.float) + res = np.array(trans.analysis_data, dtype=np.float64) return res From 28042540c7280a0e22b5007d15ea742edf8220e7 Mon Sep 17 00:00:00 2001 From: Samuel Farrens Date: Tue, 9 Jan 2024 17:56:19 +0100 Subject: [PATCH 2/2] updated patch version to 0.0.3 --- astro/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/astro/__init__.py b/astro/__init__.py index 6202a7c..1fd3a45 100644 --- a/astro/__init__.py +++ b/astro/__init__.py @@ -15,5 +15,5 @@ __all__ = ['deconvolution', 'denoising'] -version_info = (0, 0, 2) +version_info = (0, 0, 3) __version__ = '.'.join(str(c) for c in version_info) diff --git a/setup.py b/setup.py index 3393b99..ac7f5c2 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ # Set the package release version major = 0 minor = 0 -patch = 2 +patch = 3 version = '.'.join(str(value) for value in (major, minor, patch)) # Global parameters