From 4b721d4d2e94c3969e22711e21138f5dc482b09e Mon Sep 17 00:00:00 2001 From: mattijn Date: Thu, 23 May 2024 00:20:55 +0200 Subject: [PATCH] force usage fiona --- pyproject.toml | 3 ++- tests/examples_methods_syntax/interval_selection_map_quakes.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c613f5a07..fb22a2553 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,8 @@ dev = [ "mypy", "pandas-stubs", "types-jsonschema", - "types-setuptools", + "types-setuptools", + "fiona", "geopandas @ git+https://github.com/mattijn/geopandas.git@read_file_adaptation", ] doc = [ diff --git a/tests/examples_methods_syntax/interval_selection_map_quakes.py b/tests/examples_methods_syntax/interval_selection_map_quakes.py index b45afe8da..a67f2d550 100644 --- a/tests/examples_methods_syntax/interval_selection_map_quakes.py +++ b/tests/examples_methods_syntax/interval_selection_map_quakes.py @@ -10,6 +10,7 @@ from vega_datasets import data import geopandas as gpd +gpd.options.io_engine = "fiona" # load data gdf_quakies = gpd.read_file(data.earthquakes.url, driver="GeoJSON") gdf_world = gpd.read_file(data.world_110m.url, driver="TopoJSON")