Skip to content

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

@jantunes14

Description

@jantunes14

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions