Skip to content

Commit

Permalink
infra: remove some special cases (langchain-ai#27839)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored and shjunn committed Nov 4, 2024
1 parent a1fad0f commit b0a73a3
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 11 deletions.
1 change: 0 additions & 1 deletion .github/workflows/_integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ jobs:
ES_URL: ${{ secrets.ES_URL }}
ES_CLOUD_ID: ${{ secrets.ES_CLOUD_ID }}
ES_API_KEY: ${{ secrets.ES_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # for airbyte
MONGODB_ATLAS_URI: ${{ secrets.MONGODB_ATLAS_URI }}
VOYAGE_API_KEY: ${{ secrets.VOYAGE_API_KEY }}
COHERE_API_KEY: ${{ secrets.COHERE_API_KEY }}
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,6 @@ jobs:
ES_URL: ${{ secrets.ES_URL }}
ES_CLOUD_ID: ${{ secrets.ES_CLOUD_ID }}
ES_API_KEY: ${{ secrets.ES_API_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # for airbyte
MONGODB_ATLAS_URI: ${{ secrets.MONGODB_ATLAS_URI }}
VOYAGE_API_KEY: ${{ secrets.VOYAGE_API_KEY }}
UPSTAGE_API_KEY: ${{ secrets.UPSTAGE_API_KEY }}
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/api_doc_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,7 @@ jobs:
- name: Install dependencies
working-directory: langchain
run: |
# skip airbyte due to pandas dependency issue
python -m uv pip install $(ls ./libs/partners | grep -vE "airbyte" | xargs -I {} echo "./libs/partners/{}")
python -m uv pip install $(ls ./libs/partners | xargs -I {} echo "./libs/partners/{}")
python -m uv pip install libs/core libs/langchain libs/text-splitters libs/community libs/experimental
python -m uv pip install -r docs/api_reference/requirements.txt
Expand Down
1 change: 0 additions & 1 deletion docs/api_reference/create_api_rst.py
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,6 @@ def _out_file_path(package_name: str) -> Path:

def _build_index(dirs: List[str]) -> None:
custom_names = {
"airbyte": "Airbyte",
"aws": "AWS",
"ai21": "AI21",
"ibm": "IBM",
Expand Down
1 change: 0 additions & 1 deletion docs/scripts/partner_pkg_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@
CUSTOM_NAME = {
"google-genai": "Google Generative AI",
"aws": "AWS",
"airbyte": "Airbyte",
"ibm": "IBM",
}
CUSTOM_PROVIDER_PAGES = {
Expand Down
4 changes: 0 additions & 4 deletions libs/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ packages:
- name: langchain-ai21
repo: langchain-ai/langchain-ai21
path: libs/ai21
- name: langchain-airbyte
repo: langchain-ai/langchain
path: libs/partners/airbyte
disabled: true # dependency issues / stale
- name: langchain-anthropic
repo: langchain-ai/langchain
path: libs/partners/anthropic
Expand Down

0 comments on commit b0a73a3

Please sign in to comment.