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
When running pip install, line 6 of 'setup.py' throws the error: "TypeError: sequence item 0: expected str instance, int found".
I believe that you need to typecast the variable minpyver to a string before passing it to join:
sys.exit(f'Sorry, Python < {".".join(minpyver)} is not supported')
becomes
sys.exit(f'Sorry, Python < {".".join(str(minpyver))} is not supported')
The text was updated successfully, but these errors were encountered:
When running pip install, line 6 of 'setup.py' throws the error: "TypeError: sequence item 0: expected str instance, int found".
I believe that you need to typecast the variable minpyver to a string before passing it to join:
sys.exit(f'Sorry, Python < {".".join(minpyver)} is not supported')
becomes
sys.exit(f'Sorry, Python < {".".join(str(minpyver))} is not supported')
The text was updated successfully, but these errors were encountered: