Closed tgoldina closed 1 year ago
When using the recent version of numpy (e.g. 1.23.5), pip install git+https://github.com/dstndstn/tractor.git@main fails with an error:
pip install git+https://github.com/dstndstn/tractor.git@main
use of undeclared identifier 'NPY_ARRAY_UPDATEIFCOPY'
Replacing all occurrences of NPY_ARRAY_UPDATEIFCOPY with NPY_ARRAY_WRITEBACKIFCOPY cures the issue.
NPY_ARRAY_UPDATEIFCOPY
NPY_ARRAY_WRITEBACKIFCOPY
Should be fixed in 676f8fc75b8dd385559f29968821fa7675acb251.
When using the recent version of numpy (e.g. 1.23.5),
pip install git+https://github.com/dstndstn/tractor.git@main
fails with an error:Replacing all occurrences of
NPY_ARRAY_UPDATEIFCOPY
withNPY_ARRAY_WRITEBACKIFCOPY
cures the issue.