py-cfgrib: add new version (#23916)

This commit is contained in:
Adam J. Stewart 2021-05-27 22:14:44 -05:00 committed by GitHub
parent e2399bcd0e
commit 850cac5ea3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,12 +13,27 @@ class PyCfgrib(PythonPackage):
homepage = "https://github.com/ecmwf/cfgrib"
pypi = "cfgrib/cfgrib-0.9.8.5.tar.gz"
version('0.9.9.0', sha256='6ff0227df9c5ee34aa7d6ab1f7af3fbe6838523a8a9891c74040b419b03ad289')
version('0.9.8.5', sha256='07c224d7ac823a1df5738b96b9d3621515538f51f67e55044f9cc8ec1668e1bd')
# Warning: can create infinite dependency loop with xarray+io ^cfgrib+xarray
variant('xarray', default=False, description='Add xarray support')
depends_on('python@3.5:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-pytest-runner', type='build')
depends_on('py-pytest-runner', when='@0.9.8.5', type='build')
depends_on('py-attrs@19.2:', type=('build', 'run'))
depends_on('py-cffi', type=('build', 'run'))
depends_on('py-cffi', when='@0.9.8.5', type=('build', 'run'))
depends_on('py-click', type=('build', 'run'))
depends_on('py-eccodes', type=('build', 'run'))
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-xarray@0.12.0:', when='+xarray', type=('build', 'run'))
@property
def import_modules(self):
modules = ['cfgrib']
if '+xarray' in self.spec:
modules.append('cf2cdm')
return modules