summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorRyan May <rmay31@gmail.com>2021-06-09 15:49:21 -0600
committerGitHub <noreply@github.com>2021-06-09 15:49:21 -0600
commit47ef59c8855f05a437e238f379b34143b98be1c0 (patch)
treec601f8f61e04060e1f063a48e365237d5cf9ec87 /var
parent9c0fb86b48099a0092e6e2dc848bf694436f38d5 (diff)
downloadspack-47ef59c8855f05a437e238f379b34143b98be1c0.tar.gz
spack-47ef59c8855f05a437e238f379b34143b98be1c0.tar.bz2
spack-47ef59c8855f05a437e238f379b34143b98be1c0.tar.xz
spack-47ef59c8855f05a437e238f379b34143b98be1c0.zip
Bump MetPy to 1.0.1 (#23944)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-metpy/package.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/py-metpy/package.py b/var/spack/repos/builtin/packages/py-metpy/package.py
index f1ff65f4a6..4f1b8145f8 100644
--- a/var/spack/repos/builtin/packages/py-metpy/package.py
+++ b/var/spack/repos/builtin/packages/py-metpy/package.py
@@ -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'))