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 upcoming h3-py v4.0.0 release is making some breaking changes to the api.
Currently, if the h3 v4.0 prerelease beta is installed with pip install 'h3==4.0.0b2', it fails to integrate with h3pandas:
First issue: h3.h3 has been removed:
venv/lib/python3.10/site-packages/h3pandas/h3pandas.py:15: in <module>
from h3 import h3
E ImportError: cannot import name 'h3' from 'h3' (/home/worker/projects/feasibility_workflow/venv/lib/python3.10/site-packages/h3/__init__.py)
The upcoming h3-py v4.0.0 release is making some breaking changes to the api.
Currently, if the h3 v4.0 prerelease beta is installed with
pip install 'h3==4.0.0b2'
, it fails to integrate with h3pandas:First issue:
h3.h3
has been removed:https://github.com/uber/h3-py/blob/f8958ac788ea04e2b383c8b859f75a05c3fcb815/src/h3/__init__.py#L6-L7
it looks like this first issue could be fixed by replacing
from h3 import h3
withimport h3.api.basic_str as h3
in h3pandas code and testsThe text was updated successfully, but these errors were encountered: