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
You might need to run from source if you're doing stuff with Python 3, although unfortunately even there, there are a few outstanding issues. Some (but not all) are sorted in #1761 .
Hi
Your python version check in OlaClient.py fails on Python 3.10
line 957
if sys.version >= '3.2':
request.data = data.tobytes()
else:
request.data = data.tostring()
The best solution I can see, others may have a better solution, is
pv = platform.python_version_tuple()
if int(pv[0]) >= 3 and int(pv[1]) > 2:
request.data = data.tobytes()
else:
request.data = data.tostring()
The text was updated successfully, but these errors were encountered: