-
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
Plugin installation issues: pydantic and napari-aiscimageio #97
Comments
napari==0.4.17 causes errors when using the Crop functionality to draw ROIs in napari. |
I read this as an upstream From reading napari/napari#6029, my guess is that this bug is present in |
Agree, the installation is a bit more trickier.
This gives me a version that works |
I can't reproduce this on Linux. Can you explain from scratch how you created the environment? As I noted above, the issue is due to a bug in the |
if napari-aicsimageio is not in the setup file, I use:
The napari-aicsimageio installation will downgrade napari>0.5 to |
With installation of latest release, I get this error when starting napari:
Using a lower pydantic version seems to fix it.
pip install "pydantic<2"
So, if I use
uv pip install lls-core napari-lattice pyqt5 "pydantic<2"
the pydantic issue is fixed.
The other problem is that
napari-aicsimageio 0.2.0 is installed by default which does not recognize a czi file in napari
I have to specify
uv pip install lls-core napari-lattice pyqt5 "pydantic<2" "napari-aicsimageio>0.7"
to get it working.This downgrades
Looking at the pyproject.toml file
The linked issue is merged, so we should comment that out.
Essentially, add constraints:
We should consider removing napari-aicsimageio dependency altogether and include it in the plugin reader.
The text was updated successfully, but these errors were encountered: