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 bug
pip install farm-haystack[all] gets lost during backtracking. For no apparent reason pip backtracks heavily and finally crashes due to trying to build older packages. CI builds are affected as linter job uses pip install farm-haystack[all]. build-cache also seems to never finish. I tried a few shots and a hint of databind==1.5.1 seems to solve it short term. But it seems like a bigger bug within pip's backtracking logic.
Error message
CIs crash during pip install farm-haystack[all] as build tools for older dependency versions are not available on github runners:
E.g.:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 2.4/2.4 MB 74.4 MB/s eta 0:00:00
Preparing metadata (setup.py): started
Preparing metadata (setup.py): finished with status 'error'
error: subprocess-exited-with-error
× python setup.py egg_info did not run successfully.
│ exit code: 1
╰─> [2 lines of output]
fatal: not a git repository (or any of the parent directories): .git
Could not find "protoc" executable!
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
× Encountered error while generating package metadata.
╰─> See above for output.
note: This is an issue with the package mentioned above, not pip.
hint: See above for details.
Error: Process completed with exit code 1.```
Before that it backtracked almost all onnx versions for no good reason.
**Expected behavior**
pip install farm-haystack[all] works and CIs work again
**Additional context**
Seems to only affect farm-haystack[all]. The default install seems to work.
**To Reproduce**
- Create clean conda environment with python==3.7
- pip install farm-haystack[all]
**System:**
tried it on ubuntu and windows. Both have same problem even though dependencies are a little different.
The text was updated successfully, but these errors were encountered:
Depending on your environment the error message might look different or might never occur. Some backtracked dependencies need protoc or CMAKE to install. If you don't have them installed the install process will end with a similar error message as above. If you have them installed however backtacking might take hours...
Describe the bug
pip install farm-haystack[all] gets lost during backtracking. For no apparent reason pip backtracks heavily and finally crashes due to trying to build older packages. CI builds are affected as
linter
job uses pip install farm-haystack[all]. build-cache also seems to never finish. I tried a few shots and a hint ofdatabind==1.5.1
seems to solve it short term. But it seems like a bigger bug within pip's backtracking logic.Error message
CIs crash during pip install farm-haystack[all] as build tools for older dependency versions are not available on github runners:
E.g.:
The text was updated successfully, but these errors were encountered: