Skip to content

Commit

Permalink
add version 2 range constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollman committed Dec 4, 2024
1 parent 837f97b commit fbcc9d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caveclient/chunkedgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def get_root_id(self, supervoxel_id, timestamp=None, level2=False) -> np.int64:
response = self.session.get(url, params=query_d)
return np.int64(handle_response(response, as_json=True)["root_id"])

@_check_version_compatibility(method_constraint=">=2.18.0")
@_check_version_compatibility(method_constraint="<3,>=2.18.0")
def get_minimal_covering_nodes(self, node_ids: Iterable[np.int64 or int]) -> dict:
"""Get the minimal covering nodes for a list of root IDs.
Expand Down

0 comments on commit fbcc9d0

Please sign in to comment.