-
Notifications
You must be signed in to change notification settings - Fork 33
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
Remove Cython Dependency #2118
Remove Cython Dependency #2118
Conversation
76e62f6
to
5b8cf68
Compare
81e1719
to
9a69c87
Compare
A lot of changes are made here but it looks good to me, of course all CI tests must pass. Also, don't forget that we need to update |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is amazing! I'm so glad you were able to complete the Cython to Pybind11 work!
🚀 |
* Move version method to pybind11 * Delete libtiledb.pyx, libtiledb.pxd, and common.pxi * Add __iter__ for FragmentsInfoIterator
This PR removes the dependency of the repository on
Cython
. From this point onward,pybind11
will be the sole way for communicating withlibtiledb
. This change will simplify maintenance, reducing complexity and ensuring a more streamlined development process for future updates.cc: @dudoslav for visibility.
[sc-59525]