Skip to content

Prohibit installation via Python2 #55

Description

@tushar-rishav

Presently, the app has been tested with Python3.4. If a user tries to install via Python2, he gets no immediate warnings. It'd be nice to warn users if installation is being performed via Python2.
This can be implemented with simple check in manage.py maybe?

import sys
if not sys.version_info > (3, 3):
    print("Hey! We support Python 3.4 or later.")
    exit(13)

cc @nlhkabu

┆Issue is synchronized with this Asana task

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