diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2017-09-12 11:22:53 +0200 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2017-09-12 11:22:53 +0200 |
| commit | 261c7497c793a8bad19bebf114294f8b54c47d68 (patch) | |
| tree | d3cb1d1a620b399d960c0ea74d77bda688fff310 /.travis.yml | |
| parent | 03116f07b8c3abd2446f8887536b997cabd09ca0 (diff) | |
| download | PROJ-261c7497c793a8bad19bebf114294f8b54c47d68.tar.gz PROJ-261c7497c793a8bad19bebf114294f8b54c47d68.zip | |
Move python version setup to build matrix. Different Travis platforms seem to have different setups. This *should* take care of the differing python setups between linux and osx.
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 89b4c4b0..4a0a2a98 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,7 @@ matrix: env: - BUILD_NAME=linux_gcc - DETAILS="linux, gcc" + - PY_VERSION=3.4 - os: linux compiler: clang language: c @@ -26,11 +27,13 @@ matrix: env: - BUILD_NAME=linux_clang - DETAILS="linux, clang" + - PY_VERSION=3.4 - os: osx language: c env: - BUILD_NAME=osx - DETAILS="osx" + - PY_VERSION=3.4 - os: linux compiler: gcc language: c @@ -38,9 +41,7 @@ matrix: env: - BUILD_NAME=mingw32 - DETAILS="mingw32" - -python: - - 3.6 + - PY_VERSION=3.4 # allow_failures: # - os: osx |
