You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ReadTheDocs builds have been failing for a while with:
ImportError: overloading a method with both static and instance methods is not supported; error while attempting to bind instance method SnarlDistanceIndex.get_net_handle(self: bdsg.bdsg.SnarlDistanceIndex, pointer: int, connectivity: bdsg.bdsg.SnarlDistanceIndex.connectivity_t) -> bdsg.handlegraph.net_handle_t
I think the code that makes the Python bindings can't handle having both static and non-static methods with the same name, which we do here:
net_handle_record_t type = SnarlTreeRecord(pointer, &snarl_tree_records).get_record_handle_type();
returnget_net_handle(pointer, START_END, type);
}
@xchang1 Can you rename the static version of the method and see if the ReadTheDocs builds start working again? If you make a ReadTheDocs account I can give you access to the project to get the logs.
The text was updated successfully, but these errors were encountered:
The ReadTheDocs builds have been failing for a while with:
I think the code that makes the Python bindings can't handle having both static and non-static methods with the same name, which we do here:
libbdsg/bdsg/include/bdsg/snarl_distance_index.hpp
Lines 689 to 708 in 5391889
@xchang1 Can you rename the static version of the method and see if the ReadTheDocs builds start working again? If you make a ReadTheDocs account I can give you access to the project to get the logs.
The text was updated successfully, but these errors were encountered: