[geopandas] Fix CI tests in some circumstances (#13978)

Add "libproj-dev" and "proj-bin" to apt_dependencies.
These packages are necessary to build the pyproj
dependency if a pre-built wheel is not available.
This commit is contained in:
Sebastian Rittau
2025-05-09 20:26:16 +02:00
committed by GitHub
parent 785c9c4688
commit 6e2525aa00
+5
View File
@@ -2,3 +2,8 @@ version = "1.0.1"
# Requires a version of numpy with a `py.typed` file
requires = ["numpy>=1.20", "pandas-stubs", "types-shapely", "pyproj"]
upstream_repository = "https://github.com/geopandas/geopandas"
[tool.stubtest]
# libproj-dev and proj-bin are required to build pyproj if wheels for the
# target Python version are not available.
apt_dependencies = ["libproj-dev", "proj-bin"]