Uh oh!
There was an error while loading. Please reload this page.
fix: remove unused pyarrow dependency — unblocks pip install on Python 3.14 - #263
Merged
Conversation
This was referenced Jul 14, 2026
Merged
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes#145.
pyarrow==20.0.0was a direct, exact-pinned dependency with zero imports anywhere in cldk/, tests/, or docs — the orphaned companion of the already-removed pandas dependency (#145's original ask). Because pyarrow 20.0.0 ships wheels for cp39–cp313 only, everypip install cldkon Python 3.14 fell back to the sdist and attempted an Arrow C++ source build, failing on machines without a C++ toolchain.Removal, not a version bump: nothing uses it, so bumping to a cp314-wheeled pyarrow would keep shipping ~40 MB of unused Arrow; pinning the SDK to ≤3.12 would punish all users for a dead dependency.
Gates:
uv lockresolves clean (157 packages, pyarrow gone);import cldksmoke passes; python/models/typescript suites — 67 passed, 25 skipped, 23 pre-existing fixture errors (gitignored TS golden fixture, tracked in #255). Scope note: this removes the known 3.14 install blocker; full 3.14 support verification across remaining deps (ray, tree-sitter, libclang) is separate.