From bd1603812952b01852a910c7eae09a7ec1900306 Mon Sep 17 00:00:00 2001 From: "Meredith L. Patterson" Date: Tue, 26 Nov 2013 15:53:30 -0800 Subject: [PATCH] Python 2.6 is unsupported because the PyCapsule API was backported from Python 3 to 2.7. Trying Python 3.3 and 3.2 just for grins. --- .travis.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index a594c74..8717876 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,19 +8,27 @@ matrix: include: - compiler: gcc language: python - python: 2.7 + python: 3.3 env: BINDINGS=python - compiler: clang language: python - python: 2.7 + python: 3.3 env: BINDINGS=python - compiler: gcc language: python - python: 2.6 + python: 3.2 env: BINDINGS=python - compiler: clang language: python - python: 2.6 + python: 3.2 + env: BINDINGS=python + - compiler: gcc + language: python + python: 2.7 + env: BINDINGS=python + - compiler: clang + language: python + python: 2.7 env: BINDINGS=python before_install: - sudo apt-get update -qq