Skip to content

Commit

Permalink
Issue #284 Bugfix release (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
bikegeek authored Feb 23, 2023
1 parent 93cc002 commit e53f406
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
24 changes: 12 additions & 12 deletions docs/Users_Guide/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
9 changes: 9 additions & 0 deletions docs/Users_Guide/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ describes the bugfix, enhancement, or new feature: `METcalcpy GitHub issues. <ht
METcalcpy Release Notes
=======================

METcalcpy Version 2.0.2 release notes (20230223)
------------------------------------------------

* Bugfixes:


* **Address Warnings from pandas in METcalcpy code**
(`#249 <https://github.com/dtcenter/METcalcpy/issues/249>`_)

METcalcpy Version 2.0.1 release notes (20230125)
------------------------------------------------
* New Functionality:
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__="2.0.1"
__version__="2.0.2"
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
name="metcalcpy",
version=main_ns['__version__'],
author="METplus",
author_email="[email protected]",
description="statistics and util package for METplus",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -25,5 +24,5 @@
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
python_requires='>=3.8',
)

0 comments on commit e53f406

Please sign in to comment.