Skip to content

Commit 68cb0c3

Browse files
committed
Merge branch 'master' of https://github.com/nipy/nipype into weningerleon-master
2 parents 44efd0a + 7ea4f1b commit 68cb0c3

File tree

891 files changed

+768
-7126
lines changed

Some content is hidden

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

891 files changed

+768
-7126
lines changed

.circleci/config.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,19 @@ jobs:
330330
- /tmp/docker/cache/Dockerfile.base-pruned
331331
key: dockerfile-cache-v1-{{ .Branch }}-{{ checksum "/tmp/docker/cache/Dockerfile.base-pruned" }}
332332

333+
pypi_precheck:
334+
machine: *machine_kwds
335+
working_directory: /home/circleci/nipype
336+
steps:
337+
- checkout:
338+
path: /home/circleci/nipype
339+
- run:
340+
name: Check pypi preconditions
341+
command: |
342+
pip install twine future wheel readme_renderer
343+
python setup.py check -r -s
344+
python setup.py sdist bdist_wheel
345+
333346
deploy_pypi:
334347
machine: *machine_kwds
335348
working_directory: /home/circleci/nipype
@@ -339,7 +352,8 @@ jobs:
339352
- run:
340353
name: Deploy to PyPI
341354
command: |
342-
pip install twine future wheel
355+
pip install twine future wheel readme_renderer
356+
python setup.py check -r -s
343357
python setup.py sdist bdist_wheel
344358
twine upload dist/*
345359
@@ -422,3 +436,7 @@ workflows:
422436
only: /rel\/.*/
423437
tags:
424438
only: /.*/
439+
- pypi_precheck:
440+
filters:
441+
branches:
442+
only: /rel\/.*/

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ before_install:
5454
fi;
5555

5656
- travis_retry pip install -r requirements.txt
57+
- travis_retry pip install grabbit==0.1.2
5758
- travis_retry git clone https://github.com/INCF/pybids.git ${HOME}/pybids &&
5859
pip install -e ${HOME}/pybids
5960

doc/changelog/1.X.X-changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
1.1.0 (July 04, 2018)
2+
=====================
3+
4+
###### [Full changelog](https://github.com/nipy/nipype/milestone/21?closed=1)
5+
6+
* RF: Futures-based MultiProc (https://github.com/nipy/nipype/pull/2598)
7+
* FIX: Avoid closing file descriptors on Windows (https://github.com/nipy/nipype/pull/2617)
8+
* MAINT: Play nice with external logging (https://github.com/nipy/nipype/pull/2611)
9+
* MAINT: Remove ignore_exception and terminal_output traits from input specs (https://github.com/nipy/nipype/pull/2618)
10+
* MAINT: Converge autotest names (https://github.com/nipy/nipype/pull/2610)
11+
* ENH: Add versioning metadata to crash files (https://github.com/nipy/nipype/pull/2626)
12+
* ENH add -dsort option to TProject (https://github.com/nipy/nipype/pull/2623)
13+
* ENH: Add Rescale interface (https://github.com/nipy/nipype/pull/2599)
14+
* DOC: Improve documentation for ANTs/FSL interfaces (https://github.com/nipy/nipype/pull/2593)
15+
* CI: Stop using Miniconda on Travis (https://github.com/nipy/nipype/pull/2600)
16+
* CI: Add PyPI validation on rel/* branches (https://github.com/nipy/nipype/pull/2603)
17+
118
1.0.4 (May 29, 2018)
219
====================
320

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
# The short X.Y version.
8383
version = nipype.__version__
8484
# The full version, including alpha/beta/rc tags.
85-
release = "1.0.4"
85+
release = "1.1.0"
8686

8787
# The language for content autogenerated by Sphinx. Refer to documentation
8888
# for a list of supported languages.

docker/generate_dockerfiles.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,10 @@ function generate_main_dockerfile() {
106106
pandas psutil scikit-learn scipy traits=4.6.0' \
107107
pip_opts="-e" \
108108
pip_install="/src/nipype[all]" \
109+
--miniconda env_name=neuro \
110+
pip_install="grabbit==0.1.2" \
109111
--run-bash "mkdir -p /src/pybids
110-
&& curl -sSL --retry 5 https://github.com/INCF/pybids/tarball/master
112+
&& curl -sSL --retry 5 https://github.com/INCF/pybids/tarball/0.5.1
111113
| tar -xz -C /src/pybids --strip-components 1
112114
&& source activate neuro
113115
&& pip install --no-cache-dir -e /src/pybids" \

nipype/algorithms/confounds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from ..utils import NUMPY_MMAP
2525
from ..utils.misc import normalize_mc_params
2626

27-
IFLOGGER = logging.getLogger('interface')
27+
IFLOGGER = logging.getLogger('nipype.interface')
2828

2929

3030
class ComputeDVARSInputSpec(BaseInterfaceInputSpec):

nipype/algorithms/mesh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
BaseInterfaceInputSpec)
1818
from ..interfaces.vtkbase import tvtk
1919
from ..interfaces import vtkbase as VTKInfo
20-
IFLOGGER = logging.getLogger('interface')
20+
IFLOGGER = logging.getLogger('nipype.interface')
2121

2222

2323
class TVTKBaseInterface(BaseInterface):

nipype/algorithms/metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
isdefined)
2727
from ..interfaces.nipy.base import NipyBaseInterface
2828

29-
iflogger = logging.getLogger('interface')
29+
iflogger = logging.getLogger('nipype.interface')
3030

3131

3232
class DistanceInputSpec(BaseInterfaceInputSpec):

nipype/algorithms/misc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
from . import confounds
3333

34-
iflogger = logging.getLogger('interface')
34+
iflogger = logging.getLogger('nipype.interface')
3535

3636

3737
class PickAtlasInputSpec(BaseInterfaceInputSpec):

nipype/algorithms/modelgen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from ..utils.filemanip import ensure_list
3030
from ..utils.misc import normalize_mc_params
3131
from .. import config, logging
32-
iflogger = logging.getLogger('interface')
32+
iflogger = logging.getLogger('nipype.interface')
3333

3434

3535
def gcd(a, b):

0 commit comments

Comments
 (0)