Skip to content

Commit 0f7f2a9

Browse files
committed
Merge pull request #387 from effigies/update_docs
DOC: Update docs from 2.0.2 release Brings `master` docs into line with those generated in the process of releasing 2.0.2.
2 parents ca68582 + 3dd5b1c commit 0f7f2a9

File tree

6 files changed

+27
-13
lines changed

6 files changed

+27
-13
lines changed

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ Basile Pinsard <[email protected]> bpinsard <[email protected]>
2929
3030
Ben Cipollini <[email protected]> Ben Cipollini <[email protected]>
3131
Chris Markiewicz <[email protected]> Christopher J. Markiewicz <[email protected]>
32+
Chris Markiewicz <[email protected]> Christopher J. Markiewicz <[email protected]>
33+
Chris Markiewicz <[email protected]> Chris Johnson <[email protected]>

Changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,19 @@ References like "pr/298" refer to github pull request numbers.
3434
are raising a DataError if the track is truncated when ``strict=True``
3535
(the default), rather than a TypeError when trying to create the points
3636
array.
37+
38+
* 2.0.2 (Monday 23 November 2015)
39+
40+
* Fix for integer overflow on large images (pr/325) (MB);
41+
* Fix for Freesurfer nifti files with unusual dimensions (pr/332) (Chris
42+
Markiewicz);
43+
* Fix typos on benchmarks and tests (pr/336, pr/340, pr/347) (Chris
44+
Markiewicz);
45+
* Fix Windows install script (pr/339) (MB);
46+
* Support for Python 3.5 (pr/363) (MB) and numpy 1.10 (pr/358) (Chris
47+
Markiewicz);
48+
* Update pydicom imports to permit version 1.0 (pr/379) (Chris Markiewicz);
49+
* Workaround for Python 3.5.0 gzip regression (pr/383) (Ben Cipollini).
3750
* tripwire.TripWire object now raises subclass of AttributeError when trying
3851
to get an attribute, rather than a direct subclass of Exception. This
3952
prevents Python 3.5 triggering the tripwire when doing inspection prior to

doc/source/devel/make_release.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,7 @@ Release checklist
132132

133133
* Check the documentation doctests::
134134

135-
cd doc
136-
make doctest
137-
cd ..
135+
make -C doc doctest
138136

139137
This should also be tested by `nibabel on travis`_.
140138

doc/source/index.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ contributed code and discussion (in rough order of appearance):
4747
* Bago Amirbekian
4848
* Brendan Moloney
4949
* Félix C. Morency
50-
* Chris Johnson
50+
* Chris Markiewicz
5151
* JB Poline
5252
* Nolan Nichols
5353
* Nguyen, Ly
@@ -61,8 +61,7 @@ contributed code and discussion (in rough order of appearance):
6161
* Demian Wassermann
6262
* Philippe Gervais
6363
* Justin Lecher
64-
* Ben Cippolini
65-
* Chris Markiewicz
64+
* `Ben Cipollini`_
6665
* Clemens C. C. Bauer
6766

6867
License reprise

doc/source/links_names.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
and name substitutions. It may be included in many files,
66
therefore it should only contain link targets and name
77
substitutions. Try grepping for "^\.\. _" to find plausible
8-
candidates for this list.
8+
candidates for this list.
99
1010
1111
.. NOTE: reST targets are
@@ -233,6 +233,7 @@
233233
.. _Michael Hanke: http://mih.voxindeserto.de
234234
.. _Gaël Varoquaux: http://gael-varoquaux.info/
235235
.. _Stephan Gerhard: http://www.unidesign.ch
236+
.. _Ben Cipollini: http://bcipolli.github.io/
236237

237238
.. Substitutions
238239
.. |emdash| unicode:: U+02014

nibabel/info.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
=======
7070
7171
Current documentation on nibabel can always be found at the `NIPY nibabel
72-
website <https://nipy.github.io/nibabel>`_.
72+
website <http://nipy.org/nibabel>`_.
7373
7474
Mailing Lists
7575
=============
@@ -90,7 +90,7 @@
9090
* Downloads of all `available releases`_.
9191
9292
.. _main repository: https://github.com/nipy/nibabel
93-
.. _Documentation: https://nipy.github.io/nibabel
93+
.. _Documentation: http://nipy.org/nibabel
9494
.. _current release: https://pypi.python.org/pypi/nibabel
9595
.. _current development version: https://github.com/nipy/nibabel/archive/master.zip
9696
.. _available releases: https://github.com/nipy/nibabel/releases
@@ -109,16 +109,17 @@
109109

110110
# Main setup parameters
111111
NAME = 'nibabel'
112-
MAINTAINER = "Matthew Brett, Michael Hanke and Eric Larson"
113-
MAINTAINER_EMAIL = "[email protected]"
112+
MAINTAINER = "Matthew Brett, Michael Hanke, Eric Larson, " \
113+
"Chris Markiewicz"
114+
MAINTAINER_EMAIL = "[email protected]"
114115
DESCRIPTION = description
115116
LONG_DESCRIPTION = long_description
116-
URL = "https://nipy.github.io/nibabel"
117+
URL = "http://nipy.org/nibabel"
117118
DOWNLOAD_URL = "https://github.com/nipy/nibabel"
118119
LICENSE = "MIT license"
119120
CLASSIFIERS = CLASSIFIERS
120121
AUTHOR = "Matthew Brett, Michael Hanke, Stephan Gerhard"
121-
AUTHOR_EMAIL = "nipy-devel@neuroimaging.scipy.org"
122+
AUTHOR_EMAIL = "neuroimaging@python.org"
122123
PLATFORMS = "OS Independent"
123124
MAJOR = _version_major
124125
MINOR = _version_minor

0 commit comments

Comments
 (0)