Require Python >= 3.5

This commit is contained in:
Alexander Graf 2016-12-22 13:27:08 +01:00
parent 73f85b3316
commit f2660f7c02
2 changed files with 2 additions and 6 deletions

View File

@ -1,7 +1,5 @@
language: python language: python
python: python:
- "3.3"
- "3.4"
- "3.5" - "3.5"
- "3.5-dev" - "3.5-dev"
- "3.6-dev" - "3.6-dev"

View File

@ -3,8 +3,8 @@
import sys import sys
from setuptools import setup from setuptools import setup
if sys.version_info < (3, 3): if sys.version_info < (3, 5):
sys.exit('Instaloader requires Python >= 3.3.') sys.exit('Instaloader requires Python >= 3.5.')
setup( setup(
name='instaloader', name='instaloader',
@ -29,8 +29,6 @@ setup(
'Intended Audience :: End Users/Desktop', 'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3 :: Only',