Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update geopandas from 0.14.4 to 1.0.0 #1343

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -338,9 +338,9 @@ fiona==1.10.0 \
gdal==3.8.4 \
--hash=sha256:7c51e0ae7a7ccf43ad9e4bf435176baa9276653dfa16fd167c3632f6e7275207
# via soil-id
geopandas==0.14.4 \
--hash=sha256:3bb6473cb59d51e1a7fe2dbc24a1a063fb0ebdeddf3ce08ddbf8c7ddc99689aa \
--hash=sha256:56765be9d58e2c743078085db3bd07dc6be7719f0dbe1dfdc1d705cb80be7c25
geopandas==1.0.0 \
--hash=sha256:386d42c028047e2b0f09191d7859268304761c4711a247173a88891b6161f711 \
--hash=sha256:cdd3ddf3c9f978997c7f08d0c544b6f887c94af4bc2e01e3df3ae69a43510df3
# via
# -r requirements/base.in
# soil-id
Expand Down
2 changes: 2 additions & 0 deletions terraso_backend/apps/core/gis/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@

logger = structlog.get_logger(__name__)

gpd.options.io_engine = "fiona"

supported_drivers["KML"] = "rw"
supported_drivers["LIBKML"] = "rw"
supported_drivers["GPX"] = "rw"
Expand Down
2 changes: 2 additions & 0 deletions terraso_backend/tests/graphql/test_shared_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@

from ..core.gis.test_parsers import KML_TEST_FILES

gpd.options.io_engine = "fiona"

pytestmark = pytest.mark.django_db


Expand Down
Loading