Skip to content

Commit 88a59ac

Browse files
committed
Merge branch 'master' of https://github.com/nipy/nipype
2 parents 67b10fb + 154ea61 commit 88a59ac

File tree

856 files changed

+10600
-4087
lines changed

Some content is hidden

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

856 files changed

+10600
-4087
lines changed

.circleci/config.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,20 +339,22 @@ jobs:
339339
- run:
340340
name: Check pypi preconditions
341341
command: |
342-
pip install --upgrade twine future wheel readme_renderer setuptools
343-
python setup.py check -r -s
342+
pip install --upgrade pip twine future wheel readme_renderer setuptools
344343
python setup.py sdist bdist_wheel
344+
twine check dist/*
345345
- run:
346346
name: Validate Python 2 installation
347347
command: |
348348
pyenv local 2.7.12
349+
pip install --upgrade pip
349350
pip install dist/nipype-*-py2.py3-none-any.whl
350351
# Futures should install in Python 2
351352
pip show futures 2>/dev/null | grep "Name: futures"
352353
- run:
353354
name: Validate Python 3 installation
354355
command: |
355356
pyenv local 3.5.2
357+
pip install --upgrade pip
356358
pip install dist/nipype-*-py2.py3-none-any.whl
357359
# Futures should not install in Python 3
358360
test $(pip show futures 2>/dev/null | wc -l) = "0"
@@ -366,6 +368,14 @@ jobs:
366368
pip install dist/nipype-*-py2.py3-none-any.whl
367369
# Numpy should be upgraded to >= 1.15.3
368370
test "$(pip show numpy | grep Version)" \> "Version: 1.15.2"
371+
- run:
372+
name: Check python_requires prevents installation on Python 3.3
373+
command: |
374+
pyenv install 3.3.7
375+
pyenv local 3.3.7
376+
FAIL=false
377+
pip install dist/nipype-*-py2.py3-none-any.whl || FAIL=true
378+
$FAIL
369379
- store_artifacts:
370380
path: /home/circleci/nipype/dist
371381

.mailmap

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ Michael Clark <[email protected]> Clark <[email protected]>
139139
Michael Dayan <[email protected]> Michael <[email protected]>
140140
Michael Dayan <[email protected]> Michael <[email protected]>
141141
Michael Dayan <[email protected]> mick-d <mid2021@CHUCK.(none)>
142+
Michael Dayan <[email protected]> Michael <[email protected]>
143+
Michael Joseph <[email protected]> mjoseph <[email protected]>
144+
Michael Joseph <[email protected]> Michael Joseph <[email protected]>
142145
Michael Philipp Notter <[email protected]> Michael Notter <[email protected]>
143146
Michael Philipp Notter <[email protected]> miykael <[email protected]>
144147
Michael Waskom <[email protected]> Michael Waskom <[email protected]>
@@ -148,6 +151,7 @@ Michael Waskom <[email protected]> mwaskom <[email protected]>
148151
Michael Waskom <[email protected]> mwaskom <[email protected]>
149152
Michael Waskom <[email protected]> mwaskom <[email protected]>
150153
Miguel Molina-Romero <[email protected]> Miguel Molina <[email protected]>
154+
Murat Bilgel <[email protected]> Murat Bilgel <[email protected]>
151155
Oliver Contier <[email protected]> oliver-contier <[email protected]>
152156
Oscar Esteban <[email protected]> Oscar Esteban <code@oscaresteban>
153157
Oscar Esteban <[email protected]> oesteban <[email protected]>
@@ -157,6 +161,7 @@ Paul Sharp <[email protected]> psharp1289 <[email protected]>
157161
Ranjit Khanuja <[email protected]> RanjitK <[email protected]>
158162
Rastko Ćirić <[email protected]> rciric <[email protected]>
159163
Rastko Ćirić <[email protected]> Rastko Ćirić <[email protected]>
164+
Rastko Ćirić <[email protected]> rciric <[email protected]>
160165
Ross Markello <[email protected]> Ross Markello <[email protected]>
161166
Russell Poldrack <[email protected]> Russ Poldrack <[email protected]>
162167
Russell Poldrack <[email protected]> poldrack <[email protected]>
@@ -179,7 +184,11 @@ Siqi Liu <[email protected]> sql <[email protected]>
179184
Steven Giavasis <[email protected]> Steven Giavasis <[email protected]>
180185
Steven Giavasis <[email protected]> sgiavasis <[email protected]>
181186
Steven Giavasis <[email protected]> sgiavasis <[email protected]>
187+
Steven Tilley <[email protected]> Steven Tilley <[email protected]>
182188
Tristan Glatard <[email protected]> Tristan Glatard <[email protected]>
189+
Victor Férat <[email protected]> Victor <[email protected]>
190+
Victor Férat <[email protected]> Victor Ferat <[email protected]>
191+
Victor Férat <[email protected]> Victor Férat <[email protected]>
183192
Victor Saase <[email protected]> vsaase <[email protected]>
184193
Weijie Huang <[email protected]> forwho <[email protected]>
185194
William Triplett <[email protected]> William Triplett <[email protected]>

0 commit comments

Comments
 (0)