Skip to content

Commit

Permalink
Merge pull request #903 from PCMDI/lee1043-patch-1
Browse files Browse the repository at this point in the history
patch to resolve conda-feedstock failing
  • Loading branch information
lee1043 committed Feb 24, 2023
2 parents 5450b0e + 960bd96 commit 5f26713
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,21 +107,22 @@ Release Notes and History

[Released versions](https://github.com/PCMDI/pcmdi_metrics/releases)

- [v3.0.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v3.0.0) - New metric added: Cloud feedback by @mzelinka. [xCDAT](https://xcdat.readthedocs.io/en/latest/) implemented for mean climate metrics
- [v3.0.1](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v3.0.1) - Minor technical patch
- [v3.0.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v3.0.0) - New metric added: **Cloud feedback metric** by @mzelinka. [**xCDAT**](https://xcdat.readthedocs.io/en/latest/) implemented for mean climate metrics
- [v2.5.1](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.5.1) - Technical update
- [v2.5.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.5.0) - New metric added: Precipitation Benchmarking -- distribution. Graphics updated
- [v2.4.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.4.0) - New metric added: AMO in variability modes
- [v2.5.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.5.0) - New metric added: **Precipitation Benchmarking -- distribution**. Graphics updated
- [v2.4.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.4.0) - New metric added: **AMO** in variability modes
- [v2.3.2](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.3.2) - CMEC interface updates
- [v2.3.1](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.3.1) - Technical update
- [v2.3](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.3) - New graphics using [archived PMP results](https://github.com/PCMDI/pcmdi_metrics_results_archive)
- [v2.2.2](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.2.2) - Technical update
- [v2.2.1](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.2.1) - Minor update
- [v2.2](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.2) - New metric implemented: precipitation variability across time scale
- [v2.2](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.2) - New metric implemented: **precipitation variability across time scale**
- [v2.1.2](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.1.2) - Minor update
- [v2.1.1](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.1.1) - Simplified dependent libraries and CI process
- [v2.1.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.1.0) - CMEC driver interfaced added.
- [v2.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.0) - New capabilities: ENSO metrics, demos, and documentations.
- [v2.1.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.1.0) - [**CMEC**](https://cmec.llnl.gov/) driver interfaced added.
- [v2.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v2.0) - New capabilities: **ENSO** metrics, demos, and documentations.
- [v1.2](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v1.2) - Tied to CDAT 8.0. Now includes extensive regression testing. New metrics: Diurnal cycle and intermittency of precipitation, sample monsoon metrics.
- [v1.1.2](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v1.1.2) - Now managed through Anaconda, and tied to UV-CDAT 2.10. Weights on bias statistic added. Extensive provenance information incorporated into json files.
- [v1.1](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v1.1) - First public release, emphasizing climatological statistics, with development branches for ENSO and regional monsoon precipitation indices.
- [v1.1](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v1.1) - First public release, emphasizing **climatological statistics**, with development branches for ENSO and regional monsoon precipitation indices.
- [v1.0](https://github.com/PCMDI/pcmdi_metrics/releases/tag/v1.0) - Prototype version of the PMP.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@

import pcmdi_metrics
from pcmdi_metrics import resources
from pcmdi_metrics.mean_climate.lib import pmp_parser
from pcmdi_metrics.monsoon_sperber.lib import (
AddParserArgument,
YearCheck,
Expand All @@ -82,7 +83,7 @@ def tree():
# =================================================
# Collect user defined options
# -------------------------------------------------
P = pcmdi_metrics.driver.pmp_parser.PMPParser(
P = pmp_parser.PMPParser(
description="Runs PCMDI Monsoon Sperber Computations",
formatter_class=RawTextHelpFormatter,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import MV2
from SeabarChart_mpl import BarChart

from pcmdi_metrics.driver import pmp_parser
from pcmdi_metrics.pcmdi.io import JSONs
from pcmdi_metrics.mean_climate.lib import pmp_parser
from pcmdi_metrics.io.base import JSONs

test = False
# test = True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"pcmdi_metrics/mean_climate/pcmdi_compute_climatologies.py",
"pcmdi_metrics/mean_climate/mean_climate_driver.py",
"pcmdi_metrics/monsoon_wang/scripts/mpindex_compute.py",
"pcmdi_metrics/monsoon_sperber/scripts/driver_monsoon_sperber.py",
"pcmdi_metrics/monsoon_sperber/driver_monsoon_sperber.py",
"pcmdi_metrics/mjo/mjo_metrics_driver.py",
"pcmdi_metrics/variability_mode/variability_modes_driver.py",
"pcmdi_metrics/enso/enso_driver.py",
Expand Down

0 comments on commit 5f26713

Please sign in to comment.