We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
JoinTypes.__members__
Running this code with Python 3.11 shows
from spatialdata._core.query.relational_query import JoinTypes; print(JoinTypes._member_names_) from spatialdata._core.query.relational_query import MatchTypes; print(MatchTypes._member_names_)
['left', 'left_exclusive', 'inner', 'right', 'right_exclusive'] ['left', 'right', 'no']
While running it with Python 3.13 shows
[] ['left', 'right', 'no']
Leading to an exception when the join functions are called (for instance from spatialdata-plot).
spatialdata-plot
We need to:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running this code with Python 3.11 shows
While running it with Python 3.13 shows
Leading to an exception when the join functions are called (for instance from
spatialdata-plot
).We need to:
The text was updated successfully, but these errors were encountered: