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

Can't 'pip install' : setup.py has a typo #50

Open
jantunes14 opened this issue Apr 2, 2024 · 0 comments
Open

Can't 'pip install' : setup.py has a typo #50

jantunes14 opened this issue Apr 2, 2024 · 0 comments

Comments

@jantunes14
Copy link

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

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