From 0d9987e2b3015062313f6b6441d48c84ab4043e2 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 2 Oct 2015 20:10:07 -0500 Subject: [PATCH] Test against Python 3.5 on Travis Add a test against py35 Restore PySide install for 3.5 Do not try and install simpleitk on py35 Fix syntax in optional requirements file Allow simpleitk on python 3.4 Do not try simpleitk on py3.4 --- .travis.yml | 1 + optional_requirements.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 17a91baf..eecd0ff4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,6 +41,7 @@ python: - 3.2 - 3.3 - 3.4 + - 3.5 before_install: - ccache -s diff --git a/optional_requirements.txt b/optional_requirements.txt index 6dff92af..7b0fead5 100644 --- a/optional_requirements.txt +++ b/optional_requirements.txt @@ -1,6 +1,6 @@ PySide; python_version != '2.7' imread; python_version != '2.7' -SimpleITK; python_version != '3.4' +SimpleITK; python_version != '3.4' and python_version != '3.5' astropy tifffile imageio; python_version != '2.6'