diff options
author | Ricardo Wurmus <[email protected]> | 2025-01-03 10:17:11 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-01-20 21:37:32 +0100 |
commit | 011af7342b73c215f9460aebc5130f5a9cf1eb46 (patch) | |
tree | 493ea70421d1a3e19bcb97b5dc224ce25e64d62f /gnu | |
parent | 0794869d0a355f5aa081c5010353f80f21a50325 (diff) |
gnu: python-geopandas: Update to 1.0.1.
* gnu/packages/geo.scm (python-geopandas): Update to 1.0.1.
[propagated-inputs]: Remove python-fiona; add python-numpy and python-pyogrio.
[native-inputs]: Add python-codecov, python-pytest-cov, and python-pytest-xdist.
Change-Id: Id9ecf5c9e39e2d3b4e41be2ec9f4194277ee8092
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/geo.scm | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 36c8f719f5..4363d51dd6 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1037,14 +1037,14 @@ pyproj, Rtree, and Shapely.") (define-public python-geopandas (package (name "python-geopandas") - (version "0.14.2") + (version "1.0.1") (source (origin (method url-fetch) (uri (pypi-uri "geopandas" version)) (sha256 (base32 - "1nycf79nzris058lz1fyg0byj874wxq33an3y74zvybnhdxxawbf")))) + "1aq8rb1a97n9h0yinrcr6nhfj7gvh8h6wr2ng9dj1225afjp1gxq")))) (build-system pyproject-build-system) (arguments (list @@ -1058,10 +1058,19 @@ pyproj, Rtree, and Shapely.") ;; Disable tests that require internet access. "-m" "not web"))) (propagated-inputs - (list python-fiona python-packaging python-pandas python-pyproj + (list python-numpy + python-packaging + python-pandas + python-pyogrio + python-pyproj python-shapely)) (native-inputs - (list python-pytest python-setuptools python-wheel)) + (list python-codecov + python-pytest + python-pytest-cov + python-pytest-xdist + python-setuptools + python-wheel)) (home-page "https://geopandas.org") (synopsis "Geographic pandas extensions") (description "The goal of GeoPandas is to make working with |