In the file
skimage/io/_plugins/util.py

line 215

the for loop should be changed to

 for i in range(len(self.chunks)):


this change let it work on my PC (linux, 4 real core + 4 virtual (with hyperthreading)),
since there there self.cores == 8 and len(self(chunks)) == 4

  Nadav