-
Notifications
You must be signed in to change notification settings - Fork 207
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
Problem with python version 3.10 test #1755
Comments
Hi @mikacousin , Thanks for reporting. I was initially a bit confused, but its obviously because the broken version is doing a naïve string comparison and 1 < 2! I assume you mean here (and elsewhere in that file): Line 661 in c9add79
And likewise (and elsewhere): Line 955 in c9add79
We already do that in ola/include/ola/gen_callbacks.py Line 25 in c9add79
So we should be good. Was that all you needed to fix Python 3.10 compatibility? Would you mind opening a PR with those changes please? Would you mind testing #1723 please while you're there, so we can get that merged in too, and then I think we'll hopefully be properly Python 3 compatible! |
Hi @peternewman, That's the only problem I found with python 3.10 for now :-) |
🤞 Roughly what have you done of these via Python:
Great thanks.
No worries |
Fixed in #1757 |
Hi,
I just found a bug with the python version check.
It does not work with python 3.10.
Currently, we have:
if sys.version >= '3.2':
which does not match with 3.10.
It looks like this is working:
if sys.version_info >= (3, 2):
Regards
The text was updated successfully, but these errors were encountered: