From 4b4eedb2f783b0c080c8dcbdf0e9782ab785b2d2 Mon Sep 17 00:00:00 2001 From: Julie Prestopnik Date: Wed, 16 Oct 2024 12:55:39 -0600 Subject: [PATCH 1/4] Per #404, modifying version and dates --- docs/conf.py | 2 +- docs/version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index c6879204..709a0f27 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ verinfo = version release = f'{version}' release_year = '2024' -release_date = f'{release_year}-06-28' +release_date = f'{release_year}-10-17' copyright = f'{release_year}, {author}' # if set, adds "Last updated on " followed by diff --git a/docs/version b/docs/version index c2d90939..6fffb732 100644 --- a/docs/version +++ b/docs/version @@ -1 +1 @@ -__version__="3.0.0-beta6-dev" +__version__="3.0.0-beta6" From 64a5436b9fed0d36b716860e16020fbf6bdf9cfe Mon Sep 17 00:00:00 2001 From: Julie Prestopnik Date: Wed, 16 Oct 2024 13:22:42 -0600 Subject: [PATCH 2/4] Per #404, updating release notes --- docs/Users_Guide/release-notes.rst | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/docs/Users_Guide/release-notes.rst b/docs/Users_Guide/release-notes.rst index 3d765b1e..bf9d4d8f 100644 --- a/docs/Users_Guide/release-notes.rst +++ b/docs/Users_Guide/release-notes.rst @@ -8,8 +8,27 @@ describes the bugfix, enhancement, or new feature: `METcalcpy GitHub issues. `_) + + .. dropdown:: Internal + + None + + .. dropdown:: Bugfixes + + * Bugfix: MODE CSI calculations result in spurious results (`#360 `_) + -METcalcpy Velsion 3.0.0-beta5 release notes (20230628) +METcalcpy Velsion 3.0.0-beta5 release notes (20240628) ------------------------------------------------------ @@ -31,7 +50,7 @@ METcalcpy Velsion 3.0.0-beta5 release notes (20230628) .. dropdown:: Bugfixes -METcalcpy Velsion 3.0.0-beta4 release notes (20230417) +METcalcpy Velsion 3.0.0-beta4 release notes (20240417) ------------------------------------------------------ @@ -57,7 +76,7 @@ METcalcpy Velsion 3.0.0-beta4 release notes (20230417) * Address negative values returned by calculate_bcmse() and calculate_bcrmse() in sl1l2_statistics module (`#329 `_) -METcalcpy Velsion 3.0.0-beta3 release notes (20230207) +METcalcpy Velsion 3.0.0-beta3 release notes (20240207) ------------------------------------------------------ From 5b9775c21ba4b7d9f1ee3151d2f6480d917f7852 Mon Sep 17 00:00:00 2001 From: Julie Prestopnik Date: Wed, 16 Oct 2024 15:09:48 -0600 Subject: [PATCH 3/4] Adding self as an argument to calculate_statistic to attempt to resolve error with METplotpy run --- metcalcpy/sum_stat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metcalcpy/sum_stat.py b/metcalcpy/sum_stat.py index 91974682..20b23903 100644 --- a/metcalcpy/sum_stat.py +++ b/metcalcpy/sum_stat.py @@ -295,7 +295,7 @@ def process_rows(self): # return self.parallelize(data, partial(self.run_on_subset, func), num_of_processes) -def calculate_statistic(values, columns_names, stat_name, aggregation=False): +def calculate_statistic(self, values, columns_names, stat_name, aggregation=False): """Calculate the statistic of values Args: values: a np.array of values we want to calculate the statistic on From d5d5e37c303aeab9c3290cf22ec7f1fb939e72b9 Mon Sep 17 00:00:00 2001 From: Julie Prestopnik Date: Wed, 16 Oct 2024 15:11:37 -0600 Subject: [PATCH 4/4] Removing self as an argument to calculate_statistic to attempt to resolve error with METplotpy run because this would need to be done in the develop branch --- metcalcpy/sum_stat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metcalcpy/sum_stat.py b/metcalcpy/sum_stat.py index 20b23903..91974682 100644 --- a/metcalcpy/sum_stat.py +++ b/metcalcpy/sum_stat.py @@ -295,7 +295,7 @@ def process_rows(self): # return self.parallelize(data, partial(self.run_on_subset, func), num_of_processes) -def calculate_statistic(self, values, columns_names, stat_name, aggregation=False): +def calculate_statistic(values, columns_names, stat_name, aggregation=False): """Calculate the statistic of values Args: values: a np.array of values we want to calculate the statistic on