AJ Friend
AJ Friend
https://github.com/uber/h3-py/blob/72db3f72d291ee3099edd473de583b0d3b057cda/src/h3/_cy/cells.pyx#L178-L197
Possible interim backup plan: just use the command line version of the `cibuildwheel` tool, instead of the github action?
See: https://github.com/uber/h3-py/pull/113#issuecomment-631630669
Also, on windows, should we be building with various compliers to figure out the options needed?
Something like this: ```yml name: CI-windows_py27 on: push: branches: [ master ] pull_request: branches: [ master ] env: CC: cl.exe CXX: cl.exe jobs: tests: name: Python 2.7 runs-on: windows-latest steps:...
Another idea if this ends up being a [Cython class](https://cython.readthedocs.io/en/latest/src/tutorial/cdef_classes.html): we could use the class to do handy things like removing `H3_NULL` values and freeing the extra memory, or canonicalizing...
@NickLucche, now that we've landed #234, you should be able to `cimport` the C and Cython functions to write fast Cython code however you'd like. However, I don't think we'll...
Nice! I'll have to check back in when that gets released.
Maybe we should update the warning, as `unstable` was meant to imply that the API will probably change in the future. (Happy to accept a PR on this, btw!) Also,...
Yes! I am (slowly) trying to put together Python-specific documentation. You can see the current state of things at https://ajfriend.github.io/h3-py-docs/intro.html, with the source here: https://github.com/ajfriend/h3-py-docs Just note that this is...