Skip to content

Commit fbc31fe

Browse files
Birgit SchachlerBirgit Schachler
authored andcommitted
allow python 3.5
1 parent 8b8bb2a commit fbc31fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from setuptools import setup
88

99
# check python version.
10-
if not sys.version_info[:2] in ((2, 7), (3, 3), (3, 4)):
11-
sys.exit('%s requires Python 2.7, 3.3, or 3.4' % 'feedinlib')
10+
if not sys.version_info[:2] in ((2, 7), (3, 3), (3, 4), (3, 5)):
11+
sys.exit('%s requires Python 2.7, 3.3, 3.4 or 3.5' % 'feedinlib')
1212

1313
setup(name='windpowerlib',
1414
version='0.0.2dev',

0 commit comments

Comments
 (0)