cannot import IDENTITY

Hello again,

I found the solution : in file transforms.py I changed the lines 181-183
by replacing :

from _transforms import ...

with :

from _nc_transforms import ...

The file _transforms.so is apparently not built, only the _nc_ and _na_
versions are built.

Note that is also works with :

from _na_transforms import ...

Yann Le Du