Skip to content

Commit b41208b

Browse files
author
Joerg Stadler
committed
2 parents 6ab265d + ce65afb commit b41208b

File tree

149 files changed

+3021
-3645
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+3021
-3645
lines changed

.circleci/config.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_machine_kwds: &machine_kwds
2-
image: circleci/classic:201710-02
2+
image: circleci/classic:201808-01
33

44
_store_artifacts_kwds: &store_artifacts_kwds
55
path: /home/circleci/work/tests
@@ -356,6 +356,16 @@ jobs:
356356
pip install dist/nipype-*-py2.py3-none-any.whl
357357
# Futures should not install in Python 3
358358
test $(pip show futures 2>/dev/null | wc -l) = "0"
359+
- run:
360+
name: Validate Python 3.7 installation
361+
command: |
362+
pyenv local 3.7.0
363+
pip install --upgrade pip
364+
# Pre-install a version of numpy that will not pass
365+
pip install numpy==1.15.0
366+
pip install dist/nipype-*-py2.py3-none-any.whl
367+
# Numpy should be upgraded to >= 1.15.3
368+
test "$(pip show numpy | grep Version)" \> "Version: 1.15.2"
359369
- store_artifacts:
360370
path: /home/circleci/nipype/dist
361371

.mailmap

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ Aimi Watanabe <[email protected]> stymy <[email protected]>
33
Alejandro Tabas <[email protected]> qTabs <[email protected]>
44
Alejandro Tabas <[email protected]> qtabs <[email protected]>
55
Alejandro de la Vega <[email protected]> adelavega <[email protected]>
6+
Alejandro de la Vega <[email protected]> delavega4 <[email protected]>
67
Alexander Schaefer <[email protected]> Alexander Schaefer <[email protected]>
78
Alexander Schaefer <[email protected]> alexschaefer83 <[email protected]>
89
Alexander Schaefer <[email protected]> aschaefer <aschaefer@aschaefer-U36SD.(none)>
@@ -40,6 +41,7 @@ Christopher J. Markiewicz <[email protected]> Chris Markiewicz <effigies@gmail.
4041
Christopher J. Markiewicz <[email protected]> Christopher J. Johnson <[email protected]>
4142
Christopher J. Markiewicz <[email protected]> Christopher J. Markiewicz <[email protected]>
4243
Christopher J. Markiewicz <[email protected]> Christopher J. Markiewicz <[email protected]>
44+
Christopher J. Markiewicz <[email protected]> Chris Markiewicz <[email protected]>
4345
Cindee Madison <[email protected]> cindeem
4446
Cindee Madison <[email protected]> cindeem <>
4547
Colin Buchanan <[email protected]> Colin Buchanan <cbuchanan@cray4.(none)>
@@ -62,6 +64,7 @@ Erik Ziegler <[email protected]> Erik Ziegler <[email protected]>
6264
Erik Ziegler <[email protected]> erik <erik@erik-ubuntu.(none)>
6365
Erik Ziegler <[email protected]> erikz <[email protected]>
6466
Erik Ziegler <[email protected]> swederik <[email protected]>
67+
Feilong Ma <[email protected]> Ma Feilong <[email protected]>
6568
Fernando Pérez-García <[email protected]> Fernando <[email protected]>
6669
Franz Liem <[email protected]> fliem <franz.liem>
6770
@@ -93,7 +96,7 @@ Josh Warner <[email protected]> JDWarner <[email protected]
9396
Josh Warner <[email protected]> Josh Warner (Mac) <[email protected]>
9497
Kai Schlamp <[email protected]> medihack <[email protected]>Jessica Forbes <[email protected]> jessicaforbes <[email protected]>
9598
Katie Bottenhorn <[email protected]> 62442katieb <[email protected]>
96-
Kesshi Jordan <[email protected]> Kesshi Jordan <[email protected]>
99+
Kesshi Jordan <[email protected]> Kesshi Jordan <[email protected]>
97100
Kesshi Jordan <[email protected]> Kesshi Jordan <[email protected]>
98101
Kesshi Jordan <[email protected]> Kesshi Jordan <[email protected]>
99102
Kesshi Jordan <[email protected]> Kesshi Jordan <[email protected]>

.travis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ matrix:
6060
NIPYPE_EXTRAS="doc,tests,nipy,profiler"
6161
EXTRA_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS"
6262
CI_SKIP_TEST=1
63+
allow_failures:
64+
- python: 2.7
65+
env: INSTALL_DEB_DEPENDECIES=true NIPYPE_EXTRAS="doc,tests,nipy,profiler" EXTRA_PIP_FLAGS="--pre $EXTRA_PIP_FLAGS --find-links $PRE_WHEELS" CI_SKIP_TEST=1
6366

6467
addons:
6568
apt:
@@ -86,14 +89,15 @@ before_install:
8689
fi;
8790

8891
- travis_retry pip install -r requirements.txt
89-
- travis_retry pip install grabbit==0.1.2
90-
- travis_retry git clone -b 0.6.5 https://github.com/INCF/pybids.git ${HOME}/pybids && pip install -e ${HOME}/pybids
92+
- travis_retry pip install grabbit==0.2.6
93+
- travis_retry pip install -e git+https://github.com/bids-standard/pybids.git@0.7.0#egg=pybids
9194

9295
install:
9396
- travis_retry pip install $EXTRA_PIP_FLAGS -e .[$NIPYPE_EXTRAS]
97+
- travis_retry pip install pytest-xdist
9498

9599
script:
96-
- py.test -v --cov nipype --cov-config .coveragerc --cov-report xml:cov.xml -c nipype/pytest.ini --doctest-modules nipype
100+
- py.test -v --cov nipype --cov-config .coveragerc --cov-report xml:cov.xml -c nipype/pytest.ini --doctest-modules nipype -n auto
97101

98102
after_script:
99103
- codecov --file cov.xml --flags unittests -e TRAVIS_JOB_NUMBER

0 commit comments

Comments
 (0)