-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to install on fresh python env #77
Comments
Thanks @mkolopanis for flagging this, I was able to reproduce the issue on my machine using conda too. While numpy is in the requirements list and is downloaded before scikit, I guess scikit wants it to be installed already. I also confirmed that using @stevenlujpl @wkiri @urebbapr Do you see any issues with upgrading to |
None of my code invokes scikit-image so all clear on my end. |
@hannah-rae We are using scikit-image for resizing images in
|
It appears with the tagged version of scikit-image, there is no
pyproject.toml
to require a numpy package be installed before building.As a result, a user is required to install numpy into their environment before attempting to install this package.
Even defining a minimal pyroject.toml here like below cannot alleviate the issue.
However bumping to scikit-image==0.18.0 does appear to fix the issue.
Can't guarantee tests will pass with this version since they appear to already not pass as of 5aaf81f however the three that are passing on the main branch also still pass
Blank Env Install
Env w/ Numpy
Blank Env image==0.18.0
The text was updated successfully, but these errors were encountered: