Skip to content
Snippets Groups Projects
Commit 8f9ffdf8 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'mnt/release_prep' into 'master'

Mnt/release prep

See merge request fsl/fslpy!119
parents 856ee2eb 1cd0fe07
No related branches found
No related tags found
No related merge requests found
Pipeline #3585 passed
......@@ -2,8 +2,8 @@ This document contains the ``fslpy`` release history in reverse chronological
order.
2.1.0 (Friday April 12th 2019)
------------------------------
2.1.0 (Saturday April 13th 2019)
--------------------------------
Added
......@@ -21,8 +21,8 @@ Changed
* The :class:`.GiftiMesh` class no longer creates copies of the mesh
vertex/index arrays. This means that, with ``numpy>=1.16`` these arrays
will be flagged as read-only.
vertex/index arrays. This means that, these arrays will be flagged as
read-only.
* The :class:`.Mesh` class handles vertex data sets requiring different
triangle unwinding orders, at the cost of potentially having to store
two copies of the mesh indices.
......
indexed_gzip>=0.7.0
wxpython==4.*
trimesh>=2.22.28
trimesh>=2.37.29
rtree==0.8.3
......@@ -906,8 +906,8 @@ def _test_ImageWrapper_write_in_overlap(niters, seed, threaded):
# on this copy
expCovSlice = [slice(int(lo), int(hi)) for lo, hi in expCov.T]
expLo = expData[expCovSlice].min()
expHi = expData[expCovSlice].max()
expLo = expData[tuple(expCovSlice)].min()
expHi = expData[tuple(expCovSlice)].max()
wrapper[tuple(sliceobjs)] = newData
_ImageWraper_busy_wait(wrapper)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment