Skip to content

Commit

Permalink
fix(build) setup.py runtime check >=py35->3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ankostis committed Aug 31, 2020
1 parent 3d5a432 commit ead648a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# Fail early on ancient python-versions
#
py_ver = sys.version_info
if py_ver < (3, 5):
if py_ver < (3, 6):
exit("Sorry, Python >= 3.6 is needed (not %s)" % py_ver)

proj_name = "pandalone"
Expand Down

0 comments on commit ead648a

Please sign in to comment.