1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-10-03 22:07:11 +02:00

setup.py: print message if python version is too old

This commit is contained in:
Alexander Graf 2016-09-18 17:43:57 +02:00
parent 8408183b79
commit bbcebb25eb

View File

@ -1,7 +1,11 @@
#!/usr/bin/env python3
import sys
from setuptools import setup
if sys.version_info < (3,3):
sys.exit('Instaloader requires Python >= 3.3.')
setup(
name='instaloader',
version='1.1',