Skip to content

Commit

Permalink
refactor(setup): check for minimum python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmadaniHaryono committed Feb 15, 2022
1 parent b9bc61f commit f5b5d73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
import sys, os
from datetime import datetime

if sys.version_info < (3,0):
sys.exit("yewtube requires python 3.")
if sys.version_info < (3, 6):
sys.exit("yewtube requires minimum python 3.6")

from setuptools import setup

Expand Down

0 comments on commit f5b5d73

Please sign in to comment.