Draft
Conversation
…n API - set_data(node_id, key, value): write arbitrary data onto a node in-place - TaxonomyNode.get(key, default=None): safe read with fallback - TaxonomyNode.data: property returning all node data as a Python dict - reduce_up(node_id, output_key, fn): post-order catamorphism; fn(node, child_results) -> result - map_down(node_id, output_key, initial, fn): pre-order propagation; fn(parent_result, node) -> result - Fix bug in GeneralTaxonomy::remove() where data vec was not removed alongside other arrays Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…t/data docs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
The old constraint caused uv build to pull maturin 0.14.x as the build backend, which predates PyO3 0.18 and produced wheels missing all Python bindings. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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 free
to 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.
For #76
Note: this does not add functionality to the Rust library, only the Python module.
Also,
tax.data["a"]returns a copy of the data as a python dict. Sonode.data["a"] = 5doesn't actually update anything. This is a footgun IMO and we should either get rid of__getitem__or return a writeable reference.