Skip to content

Commit

Permalink
Updated minimum Python requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Jun 16, 2020
1 parent a5c4bbe commit f95d8eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tomodachi.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import sys

if __name__ == "__main__":
if not sys.version_info >= (3, 5):
print("tomodachi doesn't support Python earlier than 3.5")
if not sys.version_info >= (3, 6):
print("tomodachi doesn't support Python earlier than 3.6")
sys.exit(1)

import tomodachi.cli
Expand Down

0 comments on commit f95d8eb

Please sign in to comment.