|
1 |
| -dist: trusty |
2 |
| -sudo: required |
| 1 | +dist: xenial |
| 2 | +sudo: true |
3 | 3 |
|
4 | 4 | language: python
|
5 | 5 | # our build matrix
|
6 | 6 | python:
|
7 |
| -- 3.4 |
8 | 7 | - 3.5
|
9 | 8 | - 3.6
|
10 |
| -- 3.7-dev |
| 9 | +- 3.7 |
11 | 10 |
|
| 11 | +# NOTE: Any changes to the matrix section should be duplicated below for |
| 12 | +# Python 3.4 |
12 | 13 | env:
|
13 | 14 | global:
|
14 | 15 | - EXTRA_WHEELS="https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
|
15 | 16 | - PRE_WHEELS="https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com"
|
16 | 17 | - EXTRA_PIP_FLAGS="--find-links=$EXTRA_WHEELS"
|
17 | 18 | matrix:
|
18 | 19 | - INSTALL_DEB_DEPENDECIES=true
|
19 |
| - NIPYPE_EXTRAS="doc,tests,fmri,profiler" |
| 20 | + NIPYPE_EXTRAS="doc,tests,nipy,profiler" |
20 | 21 | CI_SKIP_TEST=1
|
21 | 22 | - INSTALL_DEB_DEPENDECIES=false
|
22 |
| - NIPYPE_EXTRAS="doc,tests,fmri,profiler" |
| 23 | + NIPYPE_EXTRAS="doc,tests,profiler" |
23 | 24 | CI_SKIP_TEST=1
|
24 | 25 | - INSTALL_DEB_DEPENDECIES=true
|
25 |
| - NIPYPE_EXTRAS="doc,tests,fmri,profiler,duecredit,ssh" |
| 26 | + NIPYPE_EXTRAS="doc,tests,nipy,profiler,duecredit,ssh" |
26 | 27 | CI_SKIP_TEST=1
|
27 | 28 | - INSTALL_DEB_DEPENDECIES=true
|
28 |
| - NIPYPE_EXTRAS="doc,tests,fmri,profiler" |
| 29 | + NIPYPE_EXTRAS="doc,tests,nipy,profiler" |
29 | 30 | EXTRA_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS"
|
30 | 31 | CI_SKIP_TEST=1
|
31 | 32 |
|
| 33 | +# Python 3.4 is only available on Trusty, so we need to duplicate the |
| 34 | +# env matrix specifically for it. |
| 35 | +matrix: |
| 36 | + include: |
| 37 | + - python: 3.4 |
| 38 | + dist: trusty |
| 39 | + env: |
| 40 | + - INSTALL_DEB_DEPENDECIES=true |
| 41 | + NIPYPE_EXTRAS="doc,tests,nipy,profiler" |
| 42 | + CI_SKIP_TEST=1 |
| 43 | + - python: 3.4 |
| 44 | + dist: trusty |
| 45 | + env: |
| 46 | + - INSTALL_DEB_DEPENDECIES=false |
| 47 | + NIPYPE_EXTRAS="doc,tests,profiler" |
| 48 | + CI_SKIP_TEST=1 |
| 49 | + - python: 3.4 |
| 50 | + dist: trusty |
| 51 | + env: |
| 52 | + - INSTALL_DEB_DEPENDECIES=true |
| 53 | + NIPYPE_EXTRAS="doc,tests,nipy,profiler,duecredit,ssh" |
| 54 | + CI_SKIP_TEST=1 |
| 55 | + - python: 3.4 |
| 56 | + dist: trusty |
| 57 | + env: |
| 58 | + - INSTALL_DEB_DEPENDECIES=true |
| 59 | + NIPYPE_EXTRAS="doc,tests,nipy,profiler" |
| 60 | + EXTRA_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS" |
| 61 | + CI_SKIP_TEST=1 |
| 62 | + |
32 | 63 | addons:
|
33 | 64 | apt:
|
34 | 65 | packages:
|
|
0 commit comments