From ca2143380fccf20e4815656e34677a67d85cea84 Mon Sep 17 00:00:00 2001 From: Hamilton Kibbe Date: Fri, 18 Nov 2016 07:45:07 -0500 Subject: Add python3.5 to CI test versions --- .travis.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 2deada8..b8cf3d1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ python: - "2.7" - "3.3" - "3.4" + - "3.5" # command to install dependencies install: -- cgit From 845737ebd85b8907d21a33b2874e83f7bfd7dadd Mon Sep 17 00:00:00 2001 From: Hamilton Kibbe Date: Fri, 18 Nov 2016 08:23:02 -0500 Subject: Temporarily disable python3.3 until i can sort out the issue with py3.3 and scipy on travis CI --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index b8cf3d1..0b3bd80 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: python python: - "2.7" - - "3.3" +# - "3.3" - "3.4" - "3.5" -- cgit From c1b29035218467b496fffed76ea85390461150c7 Mon Sep 17 00:00:00 2001 From: Hamilton Kibbe Date: Fri, 18 Nov 2016 08:26:06 -0500 Subject: Try using wheel for scipy --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 0b3bd80..a419b28 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,13 @@ language: python python: - "2.7" -# - "3.3" + - "3.3" - "3.4" - "3.5" # command to install dependencies install: - - "pip install -r requirements.txt" + - "pip install --only-binary=scipy -r requirements.txt" - "pip install -r test-requirements.txt" - "pip install coveralls" -- cgit