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

python 3.10 fix #410

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open

python 3.10 fix #410

wants to merge 2 commits into from

Conversation

veszig
Copy link

@veszig veszig commented Nov 10, 2021

Minor fix for a python 3.10 issue: Sequence was moved from collections to collections.abc, so an import has to be changed.

@slanderaan
Copy link

slanderaan commented Dec 25, 2021

@veszig I forked this due to experiencing this issue as well. I'd suggest that we add a conditional import so that this works with previous versions.

if sys.version_info > (version_number,):
    import module1
else:
    import module2

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

Successfully merging this pull request may close these issues.

None yet

2 participants