Skip to content

Commit

Permalink
use fiona engine for the test geopandas check
Browse files Browse the repository at this point in the history
  • Loading branch information
mattijn committed May 22, 2024
1 parent 8779105 commit 82cc0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
python -c "from vega_datasets import data; import geopandas as gpd; print(len(gpd.read_file(data.earthquakes.url, driver='GeoJSON')))"
- name: Test GeoPandas
run: |
python -c "import geopandas as gpd; print(len(gpd.read_file('https://cdn.jsdelivr.net/npm/vega-datasets@v1.29.0/data/earthquakes.json', driver='GeoJSON')))"
python -c "import geopandas as gpd; gpd.options.io_engine = "fiona"; print(len(gpd.read_file('https://cdn.jsdelivr.net/npm/vega-datasets@v1.29.0/data/earthquakes.json', driver='GeoJSON')))"
- name: Test Get content-length
run: |
python -c "import urllib.request; url='https://cdn.jsdelivr.net/npm/vega-datasets@v1.29.0/data/earthquakes.json'; print(urllib.request.urlopen(urllib.request.Request(url, method='HEAD')).headers['Content-Length'])"
Expand Down

0 comments on commit 82cc0d7

Please sign in to comment.