-
Notifications
You must be signed in to change notification settings - Fork 914
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
[KED-1055] Dependency issue with pyarrow #94
Comments
as a workaround, you can pin the pyarrow version to 0.14.0, and it seems to do the trick. Here is my Pipfile :
What I find strange is that you need to pin the pyarrow version within the packages for it to work. |
Hi @AlexandreOuellet! Thanks for raising this error. I'll put it on our backlog to investigate what's going on and reproduce the error. |
I've had a look, and pyarrow was pinned to 0.12.0 in the kedro 0.14.3 release. Also, this doesn't happen with a pip install, only pipenv. I've had a similar issue with airflow, where essentially an unpinned dependency got updated, and it's requirements of a common library was pinned to a higher version. So airflow depended on X and Y. X also depended on an unpinned version of Y and suddenly the dependency got all screwed up when X got updated. Pip was not making an error (although it should have), but pipenv was correctly throwing an error. edit: To clarify, it was essentially this issue : pypa/pipenv#2596 |
Hi @AlexandreOuellet, thanks for tracking down the root cause of this problem. I'm going to track this issue because another user has raised #95. Perhaps the solution to that issue will address this one too. |
Hi @AlexandreOuellet I wasn't able to reproduce this since the newer versions of |
Closing this as resolved, looks like it was fixed on either |
Description
There is a regression on windows for kedro 0.15.1 and 0.15.0 on windows.
When running
pipenv install kedro===0.14.3
, everything is fine, but when doingpipenv install kedro===0.15.0
orpipenv install kedro===0.15.1
, it fails at a depency on pyarrow 0.14.1Context
I can't install the latest version of kedro on windows 10
Steps to Reproduce
Expected Result
The dependency should be resolved, and kedro 0.15 should be able to install on windows
Actual Result
Fails to install kedro
Your Environment
Include as many relevant details about the environment in which you experienced the bug:
pip show kedro
orkedro -V
):python -V
): Python 3.6.8The text was updated successfully, but these errors were encountered: