diff options
author | David Cournapeau <cournape@gmail.com> | 2012-06-24 22:13:32 +0100 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2012-06-24 22:13:35 +0100 |
commit | 6e1e61da848e8d538d4a0482f4cc9cdcf87aad54 (patch) | |
tree | 3ad43b92c6c74ed6c562c9ab28c6cee054a299a6 | |
parent | 9982831d955bfd87ead42704c76992c3633f4664 (diff) | |
download | numpy-6e1e61da848e8d538d4a0482f4cc9cdcf87aad54.tar.gz |
TST: add separate compilation to travis-ci matrix.
We only test 2.7 and 3.2 for now. If NumFocus does a donation, maybe we
can reasonably expand to all the versions we care about.
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 2c15d9dbc..956034640 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,10 +19,16 @@ env: # use it. # - TEST_PY24="" + - NPY_SEPARATE_COMPILATION=0 matrix: include: - python: 2.5 env: TEST_PY24="true" + include: + - python: 2.7 + env: NPY_SEPARATE_COMPILATION=1 + - python: 3.2 + env: NPY_SEPARATE_COMPILATION=1 before_install: - mkdir builds - pushd builds |