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