Skip to content

Version 1.1.0

Choose a tag to compare

@ylep ylep released this 07 Mar 15:21
· 73 commits to master since this release

Installation

The easiest way to install the latest stable version of neuroglancer-scripts is through pip. Using a virtual environment is recommended:

python3 -m venv venv/
. venv/bin/activate
pip install neuroglancer-scripts

Changes since version 1.0.0

  • Add a --compresslevel option for controlling the GZip compression level. Many thanks to Bradley Lowekamp for implementing this feature in PR #24 / PR #26.
  • Add the --type and --encoding options to the all-in-one volume-to-precomputed-pyramid script. Many thanks to Xiao Gui for implementing this feature in PR #29.

Python version support

  • Add support and tests for Python 3.11.

Bug fixes

  • Fix volume reading with recent Nibabel >= 5.0.0, due to the expired deprecation of get_data. Many thanks to Bradley Lowekamp for reporting this bug, and to Xiao Gui for implementing the fix in PR #28.