Add py-geopandas 0.5.0 (#11737)
This commit is contained in:
parent
4965e9be53
commit
3192318f36
1 changed files with 13 additions and 7 deletions
|
@ -14,17 +14,23 @@ class PyGeopandas(PythonPackage):
|
|||
and descartes and matplotlib for plotting."""
|
||||
|
||||
homepage = "http://geopandas.org/"
|
||||
url = "https://github.com/geopandas/geopandas/releases/download/v0.4.0/geopandas-0.4.0.tar.gz"
|
||||
url = "https://pypi.io/packages/source/g/geopandas/geopandas-0.5.0.tar.gz"
|
||||
|
||||
version('0.4.0', 'aaad4e27c000d9fa558730d84a9be468')
|
||||
version('0.3.0', 'a4211e7a5e113002aec6823ba1368e75')
|
||||
maintainers = ['adamjstewart']
|
||||
import_modules = [
|
||||
'geopandas', 'geopandas.io', 'geopandas.tools', 'geopandas.datasets'
|
||||
]
|
||||
|
||||
version('0.5.0', sha256='d075d2ab61a502ab92ec6b72aaf9610a1340ec24ed07264fcbdbe944b9e68954')
|
||||
version('0.4.0', sha256='9f5d24d23f33e6d3267a633025e4d9e050b3a1e86d41a96d3ccc5ad95afec3db')
|
||||
version('0.3.0', sha256='e63bb32a3e516d8c9bcd149c22335575defdc5896c8bdf15c836608f152a920b')
|
||||
|
||||
variant('plotting', default=False, description='Include dependencies required for plotting')
|
||||
|
||||
depends_on('py-setuptools', type='build')
|
||||
depends_on('py-descartes', type=('build', 'run'), when='+plotting')
|
||||
depends_on('py-matplotlib', type=('build', 'run'), when='+plotting')
|
||||
depends_on('py-pandas', type=('build', 'run'))
|
||||
depends_on('py-shapely', type=('build', 'run'))
|
||||
depends_on('py-fiona', type=('build', 'run'))
|
||||
depends_on('py-pyproj', type=('build', 'run'))
|
||||
depends_on('py-shapely', type=('build', 'run'))
|
||||
depends_on('py-pandas', type=('build', 'run'))
|
||||
depends_on('py-descartes', type=('build', 'run'), when='+plotting')
|
||||
depends_on('py-matplotlib', type=('build', 'run'), when='+plotting')
|
||||
|
|
Loading…
Reference in a new issue