Commit 6b43d24
authored
fix(deps): pin llama-index-cli to resolve dependency conflict (#423)
This PR resolves a dependency installation failure that occurs when upgrading `llama-index` to version `0.14.8` (#390).
#### Problem
The upgrade to `llama-index==0.14.8` introduced a conflict with one of its transitive dependencies, `llama-index-cli`. The error arises because:
* `llama-index==0.14.8` requires `llama-index-core>=0.14.8`.
* The older version of `llama-index-cli` that was being selected by the installer requires `llama-index-core<0.14.0`.
These two requirements are mutually exclusive, causing the installation to fail.
#### Solution
This PR addresses the conflict by explicitly pinning the transitive dependency to a newer, compatible version. By adding `llama-index-cli==0.5.3` to the `requirements.txt` file, we instruct the package manager to use a version of the CLI tool that has updated its own dependencies to be compatible with the newer `llama-index` ecosystem.1 parent d1cef0d commit 6b43d24
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
3 | 4 | | |
4 | 5 | | |
5 | 6 | | |
6 | | - | |
| 7 | + | |
0 commit comments