You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current installation installs the latest geopandas available from conda-forge, which is fine. However, some geopandas methods are updated in newer versions, e.g. op= in geopandas.sjoin() is deprecated in newer versions, and replaced by predicate=.
I updated the sjoin() calls in Lasso to use predicate=, but it crashed Rachel's runs, because she has an older version of geopandas that does not recognize predicate=.
Moving forward, we will add a version requirement on geopandas installation.
The current installation installs the latest geopandas available from conda-forge, which is fine. However, some geopandas methods are updated in newer versions, e.g.
op=
ingeopandas.sjoin()
is deprecated in newer versions, and replaced bypredicate=
.I updated the
sjoin()
calls in Lasso to usepredicate=
, but it crashed Rachel's runs, because she has an older version of geopandas that does not recognizepredicate=
.Moving forward, we will add a version requirement on geopandas installation.
@RachelWikenMC @DavidOry
The text was updated successfully, but these errors were encountered: