Skip to content
Snippets Groups Projects
Forked from FSL / fslpy
1052 commits behind the upstream repository.
To find the state of this project's repository at the time of any of these versions, check out the tags.
CHANGELOG.rst 26.92 KiB

This document contains the fslpy release history in reverse chronological order.

2.7.0 (Under development)

Added

  • New until option to the :func:`.idle.block` function.
  • New :meth:`.Idle.neverQueue` setting, which can be used to force all tasks passed to :func:`.idle.idle` to be executed synchronously.
  • New :meth:`.IdleLoop.synchronous` context manager, to temporarily change the value of :meth:`.IdleLoop.neverQueue`.

Changed

  • Internal reorganisation inm the :mod:`.idle` module.

Deprecated

  • :func:`.idle.inIdle` - replaced by :meth:`.IdleLoop.inIdle`.
  • :func:`.idle.cancelIdle` - replaced by :meth:`.IdleLoop.cancelIdle`.
  • :func:`.idle.idleReser` - replaced by :meth:`.IdleLoop.idleReset`.
  • :func:`.idle.getIdleTimeout` - replaced by :meth:`.IdleLoop.callRate`.
  • :func:`.idle.setIdleTimeout` - replaced by :meth:`.IdleLoop.callRate`.

2.6.2 (Monday 7th October 2019)

Changed

  • Added a debugging hook in the :mod:`.idle` module.
  • The :func:`.fslsub.submit` function is now more flexible in the way it accepts the command and input arguments.
  • The :func:`.run.prepareArgs` function has been renamed (from _prepareArgs).

2.6.1 (Thursday 19th September 2019)

Changed

  • fslpy is no longer tested against Python 3.5, and is now tested against Python 3.6, 3.7, and 3.8.

2.6.0 (Tuesday 10th September 2019)

Added

  • New :meth:`.Image.iscomplex` attribute.
  • Support for a new Statistic atlas type.

Changed

  • The :class:`.Cache` class has a new lru option, allowing it to be used as a least-recently-used cache.
  • The :mod:`.filetree` module has been refactored to make it easier for the :mod:`.query` module to work with file tree hierarchies.
  • The :meth:`.LabelAtlas.get` method has a new binary flag, allowing either a binary mask, or a mask with the original label value, to be returned.
  • The :mod:`.dicom` module has been updated to work with the latest version of dcm2niix.

Deprecated