-
Notifications
You must be signed in to change notification settings - Fork 1
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
test with pyarrow installed #18
base: main
Are you sure you want to change the base?
Conversation
I'm unable to read czi files on Windows when I have pyarrow installed using pip |
Hey @joshua-gould can you provide the traceback for this issue? |
I don't get a traceback-python just crashes |
This is what I get:
|
This seems like an environment issue to me. I would try creating a new environment and installing with pip. Maybe try pyenv for better env/python-version control. |
Just wanted to add here I'm also getting this issue in a fresh conda environment (pip installing bioio-czi). Example file tested with: https://github.com/multiview-stitcher/multiview-stitcher/blob/main/src/multiview_stitcher/test-datasets/mosaic_test.czi |
Thanks for posting this issue. We will try to get a good repro over here and debug this. It may be something in the way that |
@joshua-gould @m-albert any particular Python version of interest? |
I just noticed that this trace shows |
Hi @toloudis, thanks a lot! Unfortunately I currently don't have access to a windows machine and will try to post a reproducer in the next days. I did get this problem for both aicsimageio and bioio. Python version was 3.10 in both cases. |
The following code works fine on Windows, however if you uncomment the pandas import it will crash (if pyarrow is installed)
|
This might be something we want to ask the dask / xarray folks since we aren't doing anything with pyarrow. I think dask recently switched to using parquet dtypes in their dataframe methods (specifically string methods) but I don't see how that would affect us here. |
No description provided.