diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-23 16:21:13 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-23 16:24:24 +0100 |
commit | 79638a06e69ed03f14114a4d358ec400e7fd2d94 (patch) | |
tree | 04ec35575daa9f942d3540c6f8d4a7734f36d2eb | |
parent | fd120632944eb9d93eba72a94d2d6fa1db8ce17e (diff) |
gnu: python-geopandas: Update to 1.1.1.
* gnu/packages/geo.scm (python-geopandas): Update to 1.1.1.
[arguments] <test-flags>: Skip 2 more tests missing baseline images.
[native-inputs]: Remove python-codecov, python-pytest-cov, and
python-pytest-xdist.
Change-Id: I8859283e692debb297e502cf6b2a722d374aa2fd
-rw-r--r-- | gnu/packages/geo.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index bfc95e4fc5..bcd7b60246 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -1185,14 +1185,14 @@ readily with other Python GIS packages such as pyproj, Rtree, and Shapely.") (define-public python-geopandas (package (name "python-geopandas") - (version "1.0.1") + (version "1.1.1") (source (origin (method url-fetch) (uri (pypi-uri "geopandas" version)) (sha256 (base32 - "1aq8rb1a97n9h0yinrcr6nhfj7gvh8h6wr2ng9dj1225afjp1gxq")))) + "0g993nzdxf6dp0fy1wi49cjph5i7plypb3p0f8zc95fhchzp2i8p")))) (build-system pyproject-build-system) (arguments (list @@ -1202,7 +1202,10 @@ readily with other Python GIS packages such as pyproj, Rtree, and Shapely.") "--ignore=geopandas/tests/test_overlay.py" "--ignore=geopandas/io/tests/test_file.py" ;; Number of open figures changed during test - "-k" "not test_pandas_kind" + "-k" (string-append "not test_pandas_kind" + ;; OSError: Baseline image '<...>' does not exist. + " and not test_plot_polygon_with_holes[png]" + " and not test_multipolygons_with_interior[png]") ;; Disable tests that require internet access. "-m" "not web"))) (propagated-inputs @@ -1213,10 +1216,7 @@ readily with other Python GIS packages such as pyproj, Rtree, and Shapely.") python-pyproj python-shapely)) (native-inputs - (list python-codecov - python-pytest - python-pytest-cov - python-pytest-xdist + (list python-pytest python-setuptools python-wheel)) (home-page "https://geopandas.org") |