You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the issue When trying to read a Parquet file using the fink_science library, I'm encountering an issue where the library is unable to find a usable engine for the Parquet file. The error message indicates that a suitable version of PyArrow or Fastparquet is required, and that the currently installed version of PyArrow (9.0.0) is not compatible with the required version (10.0.1).
Expected behaviour I expected the fink_science library to be able to read the Parquet file without any issues, as I have PyArrow installed in my environment.
Actual behaviour The actual behaviour is that the fink_science library is unable to find a usable engine for the Parquet file, and is raising an ImportError with the following message:
ImportError: Unable to find a usable engine; tried using: 'pyarrow', 'fastparquet'.
A suitable version of pyarrow or fastparquet is required for parquet support.
Trying to import the above resulted in these errors:
- Pandas requires version '10.0.1' or newer of 'pyarrow' (version '9.0.0' currently installed).
To Reproduce
Launch the CI script with commit 117d5f80b41decc35072e5e95c5238f5f55d24a7 of fink-broker main (master) branch
3. The code failed with the `ImportError` mentioned above.
**System Information:**
- Operating System: [`Linux`]
- Fink Version: [`0.1.0`]
- Occurred on which branch and with what commit: [`master-abc456d`]
**Additional context**
_The issue seems to be related to the version of PyArrow installed in my environment. I need to upgrade PyArrow to version 10.0.1 or newer to resolve the compatibility issue with the `fink_science` library._
The text was updated successfully, but these errors were encountered:
It seems that all requirements.txt file must be concatenated for each pip install step, if not pip might install a depedencies in a version that will upgrade a previously installed depedencies. We met this problem with statsmodels: #11 119.3 INFO: pip is looking at multiple versions of statsmodels to determine which version is compatible with other requirements. This could take a while. Thanks @JulienPeloton for your help!
Describe the issue
When trying to read a Parquet file using the
fink_science
library, I'm encountering an issue where the library is unable to find a usable engine for the Parquet file. The error message indicates that a suitable version of PyArrow or Fastparquet is required, and that the currently installed version of PyArrow (9.0.0) is not compatible with the required version (10.0.1).Expected behaviour
I expected the
fink_science
library to be able to read the Parquet file without any issues, as I have PyArrow installed in my environment.Actual behaviour
The actual behaviour is that the
fink_science
library is unable to find a usable engine for the Parquet file, and is raising anImportError
with the following message:To Reproduce
Launch the CI script with commit
117d5f80b41decc35072e5e95c5238f5f55d24a7
of fink-broker main (master) branchThe text was updated successfully, but these errors were encountered: