Le 20/07/2021 à 15:10, Matthew Brett a écrit :
On Tue, Jul 20, 2021 at 1:33 PM Gregory Lee <grlee77@gmail.com> wrote:
That does seem like a very reasonable compromise, where the only real
expense is the slightly kludgy name.

And it means that those of us depending on skimage can just do:

try:
     import skimage
except ImportError:
    import skimage2.skimage as skimage

I am sorry, but this looks like a Hinsen rule break... But if such thing is acceptable, I am more incline to Tensorflow's strategy:

```

import skimage.compat.v1 as skimage

skimage.disable_v2_behavior()

```