Bump MetPy to 1.0.1 (#23944)

This commit is contained in:
Ryan May 2021-06-09 15:49:21 -06:00 committed by GitHub
parent 9c0fb86b48
commit 47ef59c885
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,9 +11,12 @@ class PyMetpy(PythonPackage):
with weather data."""
homepage = "https://github.com/Unidata/MetPy"
pypi = "MetPy/MetPy-1.0.tar.gz"
pypi = "MetPy/MetPy-1.0.1.tar.gz"
maintainers = ['dopplershift']
version('1.0', sha256='11b043aaa4e3d35db319e96bb9967eb9f73da653e155bca2d62f838108b100dc')
version('1.0.1', sha256='16fa9806facc24f31f454b898741ec5639a72ba9d4ff8a19ad0e94629d93cb95')
version('1.0', sha256='11b043aaa4e3d35db319e96bb9967eb9f73da653e155bca2d62f838108b100dc',
deprecated=True)
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
@ -22,10 +25,11 @@ class PyMetpy(PythonPackage):
depends_on('py-importlib-resources@1.3.0:', when='^python@:3.8.999', type=('build', 'run'))
depends_on('py-matplotlib@2.1.0:', type=('build', 'run'))
depends_on('py-numpy@1.16.0:', type=('build', 'run'))
depends_on('py-pandas@0.22.0:', type=('build', 'run'))
depends_on('py-pandas@0.22.0:', when='@1.0', type=('build', 'run'))
depends_on('py-pandas@0.24.0:', when='@1.0.1', type=('build', 'run'))
depends_on('py-pint@0.10.1:', type=('build', 'run'))
depends_on('py-pooch@0.1:', type=('build', 'run'))
depends_on('py-pyproj@2.3.0:2.999', type=('build', 'run'))
depends_on('py-pyproj@2.3.0:', type=('build', 'run'))
depends_on('py-scipy@1.0:', type=('build', 'run'))
depends_on('py-traitlets@4.3.0:', type=('build', 'run'))
depends_on('py-xarray@0.14.1:', type=('build', 'run'))