guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 79638a06e69ed03f14114a4d358ec400e7fd2d94
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jul 23 16:21:13 2025 +0100
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
---
gnu/packages/geo.scm | 14 +++++++-------
1 file 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")