From 43534a4c08b8ece6656e1d0a13b6bf707f63251d Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Thu, 29 Feb 2024 09:57:52 -0800 Subject: [PATCH] skip airbyte api docs (#18334) --- .github/workflows/api_doc_build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/api_doc_build.yml b/.github/workflows/api_doc_build.yml index 7dd5993ea75..d8b19298704 100644 --- a/.github/workflows/api_doc_build.yml +++ b/.github/workflows/api_doc_build.yml @@ -51,7 +51,8 @@ jobs: run: | poetry run python -m pip install --upgrade --no-cache-dir pip setuptools poetry run python -m pip install --upgrade --no-cache-dir sphinx readthedocs-sphinx-ext - poetry run python -m pip install ./libs/partners/* + # skip airbyte due to pandas dependency issue + poetry run python -m pip install $(ls ./libs/partners | grep -v "airbyte" | xargs -I {} echo "./libs/partners/{}") poetry run python -m pip install --exists-action=w --no-cache-dir -r docs/api_reference/requirements.txt - name: Build docs