diff options
-rw-r--r-- | var/spack/repos/builtin/packages/py-geopandas/package.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/py-geopandas/package.py b/var/spack/repos/builtin/packages/py-geopandas/package.py index d0b9b2ed74..25d059dd1a 100644 --- a/var/spack/repos/builtin/packages/py-geopandas/package.py +++ b/var/spack/repos/builtin/packages/py-geopandas/package.py @@ -20,6 +20,7 @@ class PyGeopandas(PythonPackage): maintainers = ['adamjstewart'] version('master', branch='master') + version('0.11.0', sha256='562fe7dc19a6e0f61532d654c4752f7bf46e0714990c5844fe3de3f9c99cb873') version('0.10.2', sha256='efbf47e70732e25c3727222019c92b39b2e0a66ebe4fe379fbe1aa43a2a871db') version('0.10.1', sha256='6429ee4e0cc94f26aff12139445196ef83fe17cadbe816925508a1799f60a681') version('0.10.0', sha256='3ba1cb298c8e27112debe1d5b7898f100c91cbdf66c7dbf39726d63616cf0c6b') @@ -33,14 +34,19 @@ class PyGeopandas(PythonPackage): depends_on('python@3.5:', type=('build', 'run'), when='@0.7:') depends_on('python@3.6:', type=('build', 'run'), when='@0.9:') depends_on('python@3.7:', type=('build', 'run'), when='@0.10:') + depends_on('python@3.8:', type=('build', 'run'), when='@0.11:') depends_on('py-setuptools', type='build') depends_on('py-pandas', type=('build', 'run')) depends_on('py-pandas@0.23.0:', type=('build', 'run'), when='@0.6:') depends_on('py-pandas@0.24.0:', type=('build', 'run'), when='@0.9:') depends_on('py-pandas@0.25.0:', type=('build', 'run'), when='@0.10:') - depends_on('py-shapely', type=('build', 'run')) - depends_on('py-shapely@1.6:', type=('build', 'run'), when='@0.9:') + depends_on('py-pandas@1.0.0:', type=('build', 'run'), when='@0.11:') + depends_on('py-shapely@:1', type=('build', 'run')) + depends_on('py-shapely@1.6:1', type=('build', 'run'), when='@0.9:0.10') + depends_on('py-shapely@1.7:1', type=('build', 'run'), when='@0.11:') depends_on('py-fiona', type=('build', 'run')) depends_on('py-fiona@1.8:', type=('build', 'run'), when='@0.9:') depends_on('py-pyproj', type=('build', 'run')) depends_on('py-pyproj@2.2.0:', type=('build', 'run'), when='@0.7:') + depends_on('py-pyproj@2.6.1.post1:', type=('build', 'run'), when='@0.11:') + depends_on('py-packaging', type=('build', 'run'), when='@0.11:') |