Skip to content

Commit 095fc7c

Browse files
committed
Merge branch 'master' into enh/MeshWarp
Conflicts: CHANGES
2 parents 22d6d8d + a461ad3 commit 095fc7c

File tree

308 files changed

+9523
-1850
lines changed

Some content is hidden

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

308 files changed

+9523
-1850
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@
1414
.pydevproject
1515
.idea/
1616
/documentation.zip
17-
.DS_Store
17+
.DS_Store
18+
nipype/testing/data/von-ray_errmap.nii.gz
19+
nipype/testing/data/von_errmap.nii.gz

.mailmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Cindee Madison <cindee@berkeley.edu> cindeem
44
Chris Filo Gorgolewski <chris.gorgolewski@gmail.com> filo <filo@filo-Precision-M6500>
55
Chris Filo Gorgolewski <chris.gorgolewski@gmail.com> Krzysztof Gorgolewski <krzysztof.gorgolewski@gmail.com>
66
Erik Ziegler <erik.ziegler@ulg.ac.be> erikz <erik.ziegler@ulg.ac.be>
7-
Michael Waskom <mwaskom@stanford.edu> mwaskom <mwaskom@stanford.edu> Michael Waskom <mwaskom@mit.edu> mwaskom <mwaskom@mit.edu>
7+
Michael Waskom <mwaskom@stanford.edu> mwaskom <mwaskom@stanford.edu> Michael Waskom <mwaskom@mit.edu> mwaskom <mwaskom@mit.edu>
88
Gael Varoquaux <gael.varoquaux@normalesup.org> GaelVaroquaux
99
Gael Varoquaux <gael.varoquaux@normalesup.org> GaelVaroquaux <gael.varoquaux@noramlesup.org>
1010
Daniel Ginsburg <daniel.ginsburg@childrens.harvard.edu> danginsburg <daniel.ginsburg@childrens.harvard.edu>

.travis.yml

Lines changed: 41 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,49 @@
11
cache:
2-
- apt
2+
- apt
33
language: python
44
python:
5-
- 2.7
5+
- 2.7
66
env:
7-
- INSTALL_DEB_DEPENDECIES=true
8-
- INSTALL_DEB_DEPENDECIES=false
9-
# Setup anaconda
7+
- INSTALL_DEB_DEPENDECIES=true
8+
- INSTALL_DEB_DEPENDECIES=false
109
before_install:
11-
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.6.0-Linux-x86_64.sh -O miniconda.sh; fi
12-
- chmod +x miniconda.sh
13-
- ./miniconda.sh -b
14-
- export PATH=/home/travis/miniconda/bin:$PATH
15-
- if $INSTALL_DEB_DEPENDECIES; then sudo rm -rf /dev/shm; fi
16-
- if $INSTALL_DEB_DEPENDECIES; then sudo ln -s /run/shm /dev/shm; fi
17-
- if $INSTALL_DEB_DEPENDECIES; then bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh); fi
18-
- if $INSTALL_DEB_DEPENDECIES; then travis_retry sudo apt-get install -qq --no-install-recommends fsl afni elastix; fi
19-
- if $INSTALL_DEB_DEPENDECIES; then travis_retry sudo apt-get install -qq fsl-atlases; fi
20-
- if $INSTALL_DEB_DEPENDECIES; then source /etc/fsl/fsl.sh; fi
21-
22-
# Install packages
10+
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
11+
-O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.6.0-Linux-x86_64.sh
12+
-O miniconda.sh; fi
13+
- chmod +x miniconda.sh
14+
- "./miniconda.sh -b"
15+
- export PATH=/home/travis/miniconda/bin:$PATH
16+
- if $INSTALL_DEB_DEPENDECIES; then sudo rm -rf /dev/shm; fi
17+
- if $INSTALL_DEB_DEPENDECIES; then sudo ln -s /run/shm /dev/shm; fi
18+
- if $INSTALL_DEB_DEPENDECIES; then bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh);
19+
fi
20+
- if $INSTALL_DEB_DEPENDECIES; then travis_retry sudo apt-get install -qq --no-install-recommends
21+
fsl afni elastix; fi
22+
- if $INSTALL_DEB_DEPENDECIES; then travis_retry sudo apt-get install -qq fsl-atlases;
23+
fi
24+
- if $INSTALL_DEB_DEPENDECIES; then source /etc/fsl/fsl.sh; fi
2325
install:
24-
- conda update --yes conda
25-
- conda create -n testenv --yes pip python=$TRAVIS_PYTHON_VERSION
26-
- source activate testenv
27-
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install ordereddict; fi
28-
- conda install --yes numpy scipy nose traits networkx dateutil
29-
- pip install nibabel
30-
- pip install python-coveralls
31-
- pip install nose-cov
32-
- pip install https://github.com/RDFLib/rdflib/archive/master.zip
33-
- pip install https://github.com/trungdong/prov/archive/rdf.zip
34-
- python setup.py install
35-
36-
# Run test
26+
- conda update --yes conda
27+
- conda create -n testenv --yes pip python=$TRAVIS_PYTHON_VERSION
28+
- source activate testenv
29+
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then pip install ordereddict; fi
30+
- conda install --yes numpy scipy nose traits networkx dateutil
31+
- pip install nibabel
32+
- pip install python-coveralls
33+
- pip install nose-cov
34+
- pip install https://github.com/RDFLib/rdflib/archive/master.zip
35+
- pip install https://github.com/trungdong/prov/archive/rdf.zip
36+
- python setup.py install
3737
script:
38-
- nosetests --with-doctest --with-cov --cov nipype --cov-config .coveragerc --logging-level=INFO
39-
40-
# Calculate coverage
38+
- nosetests --with-doctest --with-cov --cov nipype --cov-config .coveragerc --logging-level=INFO
4139
after_success:
42-
- coveralls --config_file .coveragerc
40+
- coveralls --config_file .coveragerc
41+
deploy:
42+
provider: pypi
43+
user: satra
44+
password:
45+
secure: ZaN6Y4hfybPMi1rW3Qe03irCe/3GU4J4BJsjG+tClVN5Fjc3FCJaYU0k4wNd9q2kMjuRDv1efA9BN/5QasJS32oqs6wHvxzIWA18ucel4BBnAAkuviC1vqi/8Hk/DGB6e1gnmZ1Nv58zVLfn0MwlOKmsGDtvGQWc+HbaV2fS5NA=
46+
on:
47+
tags: true
48+
repo: nipy/nipype
49+
branch: master

CHANGES

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,25 @@ Next release
33

44
* ENH: New algorithm: mesh.WarpPoints applies displacements fields to point sets
55
(https://github.com/nipy/nipype/pull/889).
6+
* ENH: New interfaces for MRTrix3 (https://github.com/nipy/nipype/pull/1126)
7+
* ENH: New option in afni.3dRefit - zdel, ydel, zdel etc. (https://github.com/nipy/nipype/pull/1079)
8+
* FIX: ants.Registration composite transform outputs are no longer returned as lists (https://github.com/nipy/nipype/pull/1183)
9+
* BUG: ANTs Registration interface failed with multi-modal inputs
10+
(https://github.com/nipy/nipype/pull/1176) (https://github.com/nipy/nipype/issues/1175)
11+
* ENH: dipy.TrackDensityMap interface now accepts a reference image (https://github.com/nipy/nipype/pull/1091)
12+
* FIX: Bug in XFibres5 (https://github.com/nipy/nipype/pull/1168)
13+
* ENH: Attempt to use hard links for data sink.
14+
(https://github.com/nipy/nipype/pull/1161)
15+
* FIX: Updates to SGE Plugins
16+
(https://github.com/nipy/nipype/pull/1129)
17+
* ENH: Add ants JointFusion() node with testing
18+
(https://github.com/nipy/nipype/pull/1160)
19+
* ENH: Add --float option for antsRegistration calls
20+
(https://github.com/nipy/nipype/pull/1159)
621
* ENH: Added interface to simulate DWIs using the multi-tensor model
722
(https://github.com/nipy/nipype/pull/1085)
823
* ENH: New interface for FSL fslcpgeom utility (https://github.com/nipy/nipype/pull/1152)
24+
* ENH: Added SLURMGraph plugin for submitting jobs to SLURM with dependencies (https://github.com/nipy/nipype/pull/1136)
925
* FIX: Enable absolute path definitions in DCMStack (https://github.com/nipy/nipype/pull/1089,
1026
replaced by https://github.com/nipy/nipype/pull/1093)
1127
* ENH: New mesh.MeshWarpMaths to operate on surface-defined warpings

MANIFEST.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ include doc/documentation.zip
1010
include nipype/COMMIT_INFO.txt
1111

1212
recursive-include doc *
13-
recursive-include matlabscripts *
1413
recursive-include tools *

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
PYTHON ?= python
66
NOSETESTS ?= nosetests
77

8+
.PHONY: zipdoc sdist egg upload_to_pypi trailing-spaces clean-pyc clean-so clean-build clean-ctags clean in inplace test-code test-doc test-coverage test html specs check-before-commit check
9+
810
zipdoc: html
911
zip documentation.zip doc/_build/html
1012

@@ -26,7 +28,7 @@ upload_to_pypi: zipdoc
2628
python setup.py sdist --formats=zip,gztar upload
2729

2830
trailing-spaces:
29-
find . -name "*.py" | xargs perl -pi -e 's/[ \t]*$$//'
31+
find . -name "*[.py|.rst]" -type f | xargs perl -pi -e 's/[ \t]*$$//'
3032
@echo "Reverting test_docparse"
3133
git checkout nipype/utils/tests/test_docparse.py
3234

@@ -70,6 +72,7 @@ specs:
7072
@echo "Checking specs and autogenerating spec tests"
7173
python tools/checkspecs.py
7274

75+
check: check-before-commit # just a shortcut
7376
check-before-commit: specs trailing-spaces html test
7477
@echo "removed spaces"
7578
@echo "built docs"

README.rst

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,32 @@ NIPYPE: Neuroimaging in Python: Pipelines and Interfaces
55
.. image:: https://travis-ci.org/nipy/nipype.png?branch=master
66
:target: https://travis-ci.org/nipy/nipype
77

8+
.. image:: https://circleci.com/gh/nipy/nipype/tree/master.svg?style=svg
9+
:target: https://circleci.com/gh/nipy/nipype/tree/master
10+
811
.. image:: https://coveralls.io/repos/nipy/nipype/badge.png
912
:target: https://coveralls.io/r/nipy/nipype
1013

11-
.. image:: https://pypip.in/version/nipype/badge.png
14+
.. image:: https://www.codacy.com/project/badge/182f27944c51474490b369d0a23e2f32
15+
:target: https://www.codacy.com/app/krzysztof-gorgolewski/nipy_nipype
16+
17+
.. image:: https://img.shields.io/pypi/v/nipype.svg
1218
:target: https://pypi.python.org/pypi/nipype/
1319
:alt: Latest Version
1420

15-
.. image:: https://pypip.in/download/nipype/badge.png
21+
.. image:: https://img.shields.io/pypi/dm/nipype.svg
1622
:target: https://pypi.python.org/pypi/nipype/
1723
:alt: Downloads
1824

19-
.. image:: https://pypip.in/py_versions/nipype/badge.png
25+
.. image:: https://img.shields.io/pypi/pyversions/nipype.svg
2026
:target: https://pypi.python.org/pypi/nipype/
2127
:alt: Supported Python versions
2228

23-
.. image:: https://pypip.in/status/nipype/badge.png
29+
.. image:: https://img.shields.io/pypi/status/nipype.svg
2430
:target: https://pypi.python.org/pypi/nipype/
2531
:alt: Development Status
2632

27-
.. image:: https://pypip.in/license/nipype/badge.png
33+
.. image:: https://img.shields.io/pypi/l/nipype.svg
2834
:target: https://pypi.python.org/pypi/nipype/
2935
:alt: License
3036

@@ -64,7 +70,7 @@ Website
6470
-------
6571

6672
Information specific to Nipype is located here::
67-
73+
6874
http://nipy.org/nipype
6975

7076

@@ -75,10 +81,10 @@ If you have a problem or would like to ask a question about how to do something
7581
to `NeuroStars.org <http://neurostars.org>`_ with a *nipype* tag. `NeuroStars.org <http://neurostars.org>`_ is a platform similar to StackOverflow but dedicated to neuroinformatics. All previous Nipype questions are available here::
7682

7783
http://neurostars.org/t/nipype/
78-
84+
7985

8086
To participate in the Nipype development related discussions please use the following mailing list::
81-
87+
8288
http://mail.python.org/mailman/listinfo/neuroimaging
8389

8490
Please add *[nipype]* to the subject line when posting on the mailing list.
@@ -90,7 +96,7 @@ Nipype structure
9096
Currently Nipype consists of the following files and directories:
9197

9298
INSTALL
93-
NIPYPE prerequisites, installation, development, testing, and
99+
NIPYPE prerequisites, installation, development, testing, and
94100
troubleshooting.
95101

96102
README

THANKS.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ Other contributors
8686
* Mike Trumpis
8787
* Karl Young
8888
* Tom Waite
89-
89+
9090
We would also like to thank `JetBrains <http://www.jetbrains.com/>`__ for providing `Pycharm <http://www.jetbrains.com/pycharm/>`__ licenses.
91-
91+
9292
Funding
9393
-------
9494
Satrajit Ghosh work on this project was partially funded by NIBIB R03 EB008673 (PI: Ghosh and Whitfield-Gabrieli) and by the `INCF <http://www.incf.org>`__ through a contract with TankThink Labs, LLC.
95-
Chris Burns was supported by NIMH grant 5R01MH081909-02 (PI: Desposito). Hans Jonson was supported by
96-
`2 U54 EB005149 - 06 Core 2b Huntington's Disease - Driving Biological Project <http://projectreporter.nih.gov/project_info_description.cfm?aid=8153616&icde=16158743&ddparam=&ddvalue=&ddsub=&cr=18&csb=PT&cs=ASC>`__,
97-
`S10 RR023392 Enterprise Storage In A Collaborative Neuroimaging Environment <http://projectreporter.nih.gov/project_info_description.cfm?aid=7209718&icde=16158552&ddparam=&ddvalue=&ddsub=&cr=1&csb=default&cs=ASC>`__,
98-
`R01 NS040068 Neurobiological Predictors of Huntington's Disease <http://projectreporter.nih.gov/project_info_description.cfm?aid=6266377&icde=16158103>`__,
95+
Chris Burns was supported by NIMH grant 5R01MH081909-02 (PI: Desposito). Hans Jonson was supported by
96+
`2 U54 EB005149 - 06 Core 2b Huntington's Disease - Driving Biological Project <http://projectreporter.nih.gov/project_info_description.cfm?aid=8153616&icde=16158743&ddparam=&ddvalue=&ddsub=&cr=18&csb=PT&cs=ASC>`__,
97+
`S10 RR023392 Enterprise Storage In A Collaborative Neuroimaging Environment <http://projectreporter.nih.gov/project_info_description.cfm?aid=7209718&icde=16158552&ddparam=&ddvalue=&ddsub=&cr=1&csb=default&cs=ASC>`__,
98+
`R01 NS040068 Neurobiological Predictors of Huntington's Disease <http://projectreporter.nih.gov/project_info_description.cfm?aid=6266377&icde=16158103>`__,
9999
and `UL1 TR000442 University of Iowa Clinical and Translational Science Program <http://projectreporter.nih.gov/project_info_description.cfm?aid=8467220&icde=16159156&ddparam=&ddvalue=&ddsub=&cr=1&csb=default&cs=ASC>`__.
100100

circle.yml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
dependencies:
2+
cache_directories:
3+
- "~/examples/data"
4+
- "~/examples/fsdata"
5+
- "~/examples/feeds"
6+
- "~/mcr"
7+
- "~/spm12"
8+
- "~/examples/fsl_course_data"
9+
override:
10+
- pip install --upgrade pip
11+
- pip install -e .
12+
- pip install matplotlib sphinx ipython
13+
- if [[ ! -d ~/examples/data ]]; then wget "http://tcpdiag.dl.sourceforge.net/project/nipy/nipype/nipype-0.2/nipype-tutorial.tar.bz2"; tar jxvf nipype-tutorial.tar.bz2; mkdir ~/examples; mv nipype-tutorial/* ~/examples/; fi
14+
# we download this manually because CircleCI does not cache apt
15+
- if [[ ! -d ~/examples/feeds ]]; then wget "http://fsl.fmrib.ox.ac.uk/fsldownloads/fsl-5.0.8-feeds.tar.gz"; tar zxvf fsl-5.0.8-feeds.tar.gz; mv feeds ~/examples/; fi
16+
- if [[ ! -d ~/examples/fsl_course_data ]]; then wget -c "http://fsl.fmrib.ox.ac.uk/fslcourse/fdt1.tar.gz" ; wget -c "http://fsl.fmrib.ox.ac.uk/fslcourse/fdt2.tar.gz"; wget -c "http://fsl.fmrib.ox.ac.uk/fslcourse/tbss.tar.gz"; mkdir ~/examples/fsl_course_data; tar zxvf fdt1.tar.gz -C ~/examples/fsl_course_data; tar zxvf fdt2.tar.gz -C ~/examples/fsl_course_data; tar zxvf tbss.tar.gz -C ~/examples/fsl_course_data; fi
17+
- wget -O- http://neuro.debian.net/lists/trusty.us-nh.full | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
18+
- sudo apt-key adv --recv-keys --keyserver hkp://pgp.mit.edu:80 0xA5D32F012649A5A9
19+
- sudo apt-get update -y; sudo apt-get install -y fsl-core fsl-atlases
20+
- bash ~/nipype/tools/install_spm_mcr.sh
21+
- mkdir -p ~/.nipype && echo "[logging]" > ~/.nipype/nipype.cfg && echo "workflow_level = DEBUG" >> ~/.nipype/nipype.cfg && echo "interface_level = DEBUG" >> ~/.nipype/nipype.cfg && echo "filemanip_level = DEBUG" >> ~/.nipype/nipype.cfg
22+
test:
23+
override:
24+
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && nosetests --with-doctest --logging-level=DEBUG --verbosity=3:
25+
environment:
26+
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
27+
FORCE_SPMMCR: 1
28+
FSL_COURSE_DATA: "$HOME/examples/fsl_course_data"
29+
timeout: 2600
30+
- set -o pipefail && cd doc && make html 2>&1 | tee ~/log.txt
31+
- cat ~/log.txt && if grep -q "ERROR" ~/log.txt; then false; else true; fi
32+
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py test_spm Linear workflow3d workflow4d:
33+
pwd: ../examples
34+
environment:
35+
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
36+
FORCE_SPMMCR: 1
37+
timeout: 1600
38+
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_fsl_feeds Linear l1pipeline:
39+
pwd: ../examples
40+
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_spm_dartel Linear level1 l2pipeline:
41+
pwd: ../examples
42+
environment:
43+
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
44+
FORCE_SPMMCR: 1
45+
timeout: 1600
46+
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_fsl_reuse Linear level1_workflow:
47+
pwd: ../examples
48+
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_spm_nested Linear level1 l2pipeline:
49+
pwd: ../examples
50+
environment:
51+
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
52+
FORCE_SPMMCR: 1
53+
54+
general:
55+
artifacts:
56+
- "doc/_build/html"
57+
- "~/log.txt"

doc/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Discover available make targets::
1616
make help
1717

1818
Clean up previous build::
19-
19+
2020
make clean
2121

2222
Build html documentation::

doc/_templates/indexsidebar.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ <h3>{{ _('Links') }}</h3>
55
<li>Docs: <a href="http://nipy.org/nipype">Stable</a> · <a href="http://www.mit.edu/~satra/nipype-nightly/">Nightly</a></li>
66
<li>Code: <a href="http://github.com/nipy/nipype">Github</a> · <a href="http://github.com/nipy/nipype/issues">Bugs-Requests</a></li>
77
<li>Forum: <a href="http://neurostars.org/t/nipype">User</a> · <a href="http://projects.scipy.org/mailman/listinfo/nipy-devel">Developer</a></li>
8-
<li><a href="http://nipy.org/software/license/index.html"><img src="https://pypip.in/license/nipype/badge.png" alt="License"></a> · <a href="http://nipy.org/about/funding.html">Funding</a></li>
8+
<li><a href="http://nipy.org/software/license/index.html"><img src="https://img.shields.io/pypi/l/nipype.svg" alt="License"></a> · <a href="http://nipy.org/about/funding.html">Funding</a></li>
99
<li><a href="https://travis-ci.org/nipy/nipype"><img src="https://travis-ci.org/nipy/nipype.png?branch=master" alt="travis"></a> · <a href='https://coveralls.io/r/nipy/nipype'><img src='https://coveralls.io/repos/nipy/nipype/badge.png' alt='Coverage Status' /></a></li>
10-
<li><a href="https://pypi.python.org/pypi/nipype/"><img src="https://pypip.in/download/nipype/badge.png" alt="Downloads"></a> · <a href='https://pypi.python.org/pypi/nipype/'><img src='https://pypip.in/py_versions/nipype/badge.png' alt='Python Versions' /></a></li>
10+
<li><a href="https://pypi.python.org/pypi/nipype/"><img src="https://img.shields.io/pypi/dm/nipype.svg" alt="Downloads"></a> · <a href='https://pypi.python.org/pypi/nipype/'><img src='https://img.shields.io/pypi/pyversions/nipype.svg' alt='Python Versions' /></a></li>
1111
</ul>
1212

1313
{% endblock %}

doc/_templates/sidebar_versions.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h3>{{ _('Versions') }}</h3>
1717
<td align="left">Release</td><td align="right">Devel</td>
1818
</tr>
1919
<tr>
20-
<td align="left">0.10.0</td><td align="right">1.0-dev</td>
20+
<td align="left">0.11.0-rc1</td><td align="right">{{ version }}</td>
2121
</tr>
2222
<tr>
2323
<td align="left"><a href="{{pathto('users/install')}}">Download</a></td>
@@ -29,7 +29,7 @@ <h3>{{ _('Versions') }}</h3>
2929
<div id="buttons">
3030
<div id="ohloh-use" style="margin-right: 25px; margin-top: -2px; float: left;">
3131
<script type="text/javascript"
32-
src="http://www.ohloh.net/p/480871/widgets/project_users_logo.js">
32+
src="https://www.openhub.net/p/480871/widgets/project_users_logo.js">
3333
</script>
3434
</div><!-- use -->
3535
<g:plusone size="medium" annotation="none"></g:plusone>

doc/conf.py

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

5858
# General information about the project.
5959
project = u'nipype'
60-
copyright = u'2009-14, Neuroimaging in Python team'
60+
copyright = u'2009-15, Neuroimaging in Python team'
6161

6262
# The version info for the project you're documenting, acts as replacement for
6363
# |version| and |release|, also used in various other places throughout the

0 commit comments

Comments
 (0)