Transforms have changed so that when using a Transform with `apply_on=['a','b']`, the same transform is applied to both `a` and `b`.
With this you can for example do a
RandPermute(apply_on=['input', 'label'])
to apply the same random permutation to both an input and its label (e.g. volume and segmentation volume).
Also added `tqdm` to dependencies.