Skip to content

Commit a51f2ca

Browse files
committed
add python 3.5 to setup and travis
1 parent d00ef2d commit a51f2ca

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ python:
33
- 2.7
44
- 3.3
55
- 3.4
6+
- 3.5
67
env:
78
- PD_VERSION=0.13.1
89
- PD_VERSION="0.14.*"
910
- PD_VERSION="0.15.*"
1011
- PD_VERSION="0.16.*"
12+
- PD_VERSION="0.17.*"
1113

1214
# setup miniconda for numpy, scipy, pandas
1315
before_install:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
exec(f.read())
2727

2828
# check python version.
29-
if not sys.version_info[:2] in ((2,7), (3,3), (3,4)):
29+
if not sys.version_info[:2] in ((2,7), (3,3), (3,4), (3,5)):
3030
sys.exit('%s requires Python 2.7, 3.3, or 3.4' % DISTNAME)
3131

3232
setuptools_kwargs = {

0 commit comments

Comments
 (0)