don't support py2.6

This commit is contained in:
Will Roberts
2015-02-18 17:04:18 +01:00
parent 3e14091285
commit 770851111c
2 changed files with 2 additions and 3 deletions

View File

@@ -1,6 +1,5 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"

View File

@@ -24,8 +24,8 @@ with open(path.join(HERE, 'README.rst'), encoding='utf-8') as f:
# http://stackoverflow.com/a/19719657/1062499
INSTALL_REQUIRES = []
if sys.version_info[0] == 2:
INSTALL_REQUIRES.append('future')
if sys.version_info.major == 2:
INSTALL_REQUIRES.append('future >= 0.14')
setup(
name='pytimeparse',