~ubuntu-branches/ubuntu/wily/nibabel/wily-proposed

« back to all changes in this revision

Viewing changes to nibabel/__init__.py

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2012-05-06 12:58:22 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120506125822-3jiwjkmdqcxkrior
Tags: 1.2.0-1
* New upstream release: bugfixes, support for new formats
  (Freesurfer, ECAT, etc), nib-ls tool.
* debian/copyright
  - corrected reference to the format specs
  - points to github's repository as the origin of sources
  - removed lightunit license/copyright -- removed upstream
  - added netcdf module license/copyright terms
* debian/control
  - added python-fuse to Recommends and Build-Depends for dicomfs
  - boosted policy compliance to 3.9.3 (no further changes)
* debian/watch
  - adjusted to download numbered tag

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
from . import spm2analyze as spm2
41
41
from . import nifti1 as ni1
42
42
from . import minc
 
43
from . import ecat
43
44
# object imports
44
45
from .fileholders import FileHolder, FileHolderError
45
46
from .loadsave import load, save
48
49
from .spm2analyze import Spm2AnalyzeHeader, Spm2AnalyzeImage
49
50
from .nifti1 import Nifti1Header, Nifti1Image, Nifti1Pair
50
51
from .minc import MincImage
 
52
from .freesurfer import MGHImage
51
53
from .funcs import (squeeze_image, concat_images, four_to_three,
52
54
                    as_closest_canonical)
53
55
from .orientations import (io_orientation, orientation_affine,
61
63
try:
62
64
    from numpy.testing import Tester
63
65
    test = Tester().test
 
66
    bench = Tester().bench
64
67
    del Tester
65
68
except ImportError:
66
69
    def test(*args, **kwargs): raise RuntimeError('Need numpy >= 1.2 for tests')