-
Notifications
You must be signed in to change notification settings - Fork 11
Feature/249 support geoparquet #254
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
base: main
Are you sure you want to change the base?
Feature/249 support geoparquet #254
Conversation
The pipeline failed but it seems just to be an intermittent networking issue, from the raw logs
|
701248d
to
da71966
Compare
@isabelizimm thanks for merging that adaptor PR, whew! I have refactored this PR to use a new GeoPandas adaptor. It looks like the CI is failing due to databricks auth issues |
To resolve #249.
I am developing on Windows so adding a dependency and updating the requirements file is a little cumbersome.
The way I approached this is to use
uv
withuv pip compile setup.cfg --extra=doc --extra=test --python-platform=linux --output-file=requirements/dev.txt --unsafe-package=pip --unsafe-package=setuptools
And then I did some massaging of the diff to remove some unnecessary stylistic changes introduced by uv.
Also pip-compile ignores platform specifiers, so
uv
didn't includeappnope==0.1.4
(it is a Darwin-only dependency ofipykernel
), but I manually added it back to minimize the diff.This might be an argument in favour of switching to
uv pip compile
overpip-compile
but it also might be an argument in favour of me developing on Linux 👀