Skip to content
New issue

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__ empty in Python 3.13 #852

Open
2 of 5 tasks
LucaMarconato opened this issue Jan 30, 2025 · 0 comments
Open
2 of 5 tasks

JoinTypes.__members__ empty in Python 3.13 #852

LucaMarconato opened this issue Jan 30, 2025 · 0 comments

Comments

@LucaMarconato
Copy link
Member

LucaMarconato commented Jan 30, 2025

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).

We need to:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant