[PR #59] Fix broken poetry install #61

Open
opened 2026-02-15 19:15:35 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/streamlit-agent/pull/59
Author: @FieteO
Created: 5/24/2025
Status: 🔄 Open

Base: mainHead: fix-poetry-install


📝 Commits (1)

  • 65ba730 Fix broken poetry install

📊 Changes

5 files changed (+2736 additions, -2335 deletions)

View changed files

📝 poetry.lock (+2730 -2329)
📝 streamlit_agent/chat_pandas_df.py (+2 -2)
📝 streamlit_agent/chat_with_documents.py (+1 -1)
📝 streamlit_agent/chat_with_sql_db.py (+1 -1)
📝 streamlit_agent/minimal_agent.py (+2 -2)

📄 Description

On my machine, I cannot run poetry install to install the dependencies of the project:

$ poetry install
...
Package operations: 63 installs, 0 updates, 0 removals

  - Installing triton (2.1.0): Failed

    | Unable to find installation candidates for triton (2.1.0)
    | 
    | This is likely not a Poetry issue.
    | 
    |   - 8 candidate(s) were identified for the package
    |   - 8 wheel(s) were skipped as your project's environment does not support the identified abi tags
    | 
    | Solutions:
    | Make sure the lockfile is up-to-date. You can try one of the following;
    | 
    |     1. Regenerate lockfile: poetry lock --no-cache --regenerate
    |     2. Update package     : poetry update --no-cache triton
    | 
    | If neither works, please first check to verify that the triton has published wheels available from your configured source that are compatible with your environment- ie. operating system, architecture (x86_64, arm64 etc.), python interpreter.

This PR

  • updates the lock file with the result of running poetry lock --no-cache --regenerate
  • replaces deprecated imports that are not in langchain_community

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/streamlit-agent/pull/59 **Author:** [@FieteO](https://github.com/FieteO) **Created:** 5/24/2025 **Status:** 🔄 Open **Base:** `main` ← **Head:** `fix-poetry-install` --- ### 📝 Commits (1) - [`65ba730`](https://github.com/langchain-ai/streamlit-agent/commit/65ba730340fd9e5a500262cb9e9b023ebf7f4c5c) Fix broken poetry install ### 📊 Changes **5 files changed** (+2736 additions, -2335 deletions) <details> <summary>View changed files</summary> 📝 `poetry.lock` (+2730 -2329) 📝 `streamlit_agent/chat_pandas_df.py` (+2 -2) 📝 `streamlit_agent/chat_with_documents.py` (+1 -1) 📝 `streamlit_agent/chat_with_sql_db.py` (+1 -1) 📝 `streamlit_agent/minimal_agent.py` (+2 -2) </details> ### 📄 Description On my machine, I cannot run `poetry install` to install the dependencies of the project: ```sh $ poetry install ... Package operations: 63 installs, 0 updates, 0 removals - Installing triton (2.1.0): Failed | Unable to find installation candidates for triton (2.1.0) | | This is likely not a Poetry issue. | | - 8 candidate(s) were identified for the package | - 8 wheel(s) were skipped as your project's environment does not support the identified abi tags | | Solutions: | Make sure the lockfile is up-to-date. You can try one of the following; | | 1. Regenerate lockfile: poetry lock --no-cache --regenerate | 2. Update package : poetry update --no-cache triton | | If neither works, please first check to verify that the triton has published wheels available from your configured source that are compatible with your environment- ie. operating system, architecture (x86_64, arm64 etc.), python interpreter. ``` This PR - updates the lock file with the result of running `poetry lock --no-cache --regenerate` - replaces deprecated imports that are not in `langchain_community` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-15 19:15:35 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/streamlit-agent#61