From e53f406274e746643264f86c41ae1cb4e6cc82f3 Mon Sep 17 00:00:00 2001 From: bikegeek <3753118+bikegeek@users.noreply.github.com> Date: Thu, 23 Feb 2023 13:59:26 -0700 Subject: [PATCH] Issue #284 Bugfix release (#285) --- README.md | 2 +- docs/Users_Guide/installation.rst | 24 ++++++++++++------------ docs/Users_Guide/release-notes.rst | 9 +++++++++ docs/conf.py | 6 +++--- docs/version | 2 +- setup.py | 3 +-- 6 files changed, 27 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index ddb57db3..9e7939b7 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,6 @@ Instructions for installing the metcalcpy package locally Instructions for installing the metcalcpy package from PyPI ----------------------------------------------------------- -- activate your Python 3.10.4+ conda environment +- activate your Python 3.8.6+ conda environment - run the following from the command line: - pip install metcalcpy==x.y.z where x.y.z is the version number of interest diff --git a/docs/Users_Guide/installation.rst b/docs/Users_Guide/installation.rst index 013f7b76..083810da 100644 --- a/docs/Users_Guide/installation.rst +++ b/docs/Users_Guide/installation.rst @@ -11,35 +11,35 @@ Python Requirements * cartopy 0.20.2 -* eofs +* eofs 1.4.0 * imutils 0.5.4 -* imageio 2.19.2 +* imageio 2.19.3 -* lxml +* lxml 4.9.1 -* matplotlib 3.5.1 +* matplotlib 3.5.2 * metcalcpy -* metpy +* metpy 1.3.1 -* netcdf4 1.5.8 +* netcdf4 1.6.2 -* numpy 1.22.3 +* numpy 1.24.2 -* pandas 1.2.3 +* pandas 1.5.1 -* pytest 7.1.2 +* pytest 7.2.1 -* pyyaml 5.3.1 or above +* pyyaml 6.0 -* scikit-image 0.18.1 or above +* scikit-image 0.19.3 * scikit-learn 0.23.2 -* scipy 1.8.0 +* scipy 1.8.1 * xarray 2022.3.0 diff --git a/docs/Users_Guide/release-notes.rst b/docs/Users_Guide/release-notes.rst index 2301e2dd..0845af74 100644 --- a/docs/Users_Guide/release-notes.rst +++ b/docs/Users_Guide/release-notes.rst @@ -8,6 +8,15 @@ describes the bugfix, enhancement, or new feature: `METcalcpy GitHub issues. `_) + METcalcpy Version 2.0.1 release notes (20230125) ------------------------------------------------ * New Functionality: diff --git a/docs/conf.py b/docs/conf.py index b74c56c1..dcbaaf0a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,14 +19,14 @@ # -- Project information ----------------------------------------------------- project = 'METcalcpy' -copyright = '2022, NCAR' +copyright = '2023, NCAR' author = 'UCAR/NCAR, NOAA, CSU/CIRA, and CU/CIRES' author_list = 'Burek, T., H. Fisher, C. Kalb, D. Adriaansen, D. Fillmore, M. Win-Gildenmeister, and T. Jensen' version = 'release' verinfo = version release = f'{version}' -release_year = '2022' -release_date = f'{release_year}-12-07' +release_year = '2023' +release_date = f'{release_year}-02-23' copyright = f'{release_year}, {author}' # if set, adds "Last updated on " followed by diff --git a/docs/version b/docs/version index 1fafad03..a6868fd5 100644 --- a/docs/version +++ b/docs/version @@ -1 +1 @@ -__version__="2.0.1" +__version__="2.0.2" diff --git a/setup.py b/setup.py index 2c06f5f8..0b6efd24 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,6 @@ name="metcalcpy", version=main_ns['__version__'], author="METplus", - author_email="met-help@ucar.edu", description="statistics and util package for METplus", long_description=long_description, long_description_content_type="text/markdown", @@ -25,5 +24,5 @@ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ], - python_requires='>=3.6', + python_requires='>=3.8', )