From 9d1de43b4edd96ed4be4474db490f9cbab24fa2b Mon Sep 17 00:00:00 2001 From: Chris Gerber Date: Tue, 5 Nov 2024 10:27:20 -0800 Subject: [PATCH] removing additional matrix.python references and coding for 3.10 (#8) --- .github/workflows/publish_docs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish_docs.yml b/.github/workflows/publish_docs.yml index 83dc4e6fd..23f6b3d63 100644 --- a/.github/workflows/publish_docs.yml +++ b/.github/workflows/publish_docs.yml @@ -12,7 +12,7 @@ jobs: working-directory: ./cdp-agentkit-core steps: - - name: Set up Python ${{ matrix.python }} + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: python-version: '3.10' @@ -29,7 +29,7 @@ jobs: uses: actions/cache@v3 with: path: ./cdp-agentkit-core/.venv - key: venv-agentkit-${{ runner.os }}-${{ matrix.python }}-${{ hashFiles('cdp-agentkit-core/poetry.lock') }} + key: venv-agentkit-${{ runner.os }}-3.10-${{ hashFiles('cdp-agentkit-core/poetry.lock') }} - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' @@ -56,7 +56,7 @@ jobs: working-directory: ./cdp-langchain steps: - - name: Set up Python ${{ matrix.python }} + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: python-version: '3.10' @@ -73,7 +73,7 @@ jobs: uses: actions/cache@v3 with: path: ./cdp-langchain/.venv - key: venv-langchain-${{ runner.os }}-${{ matrix.python }}-${{ hashFiles('cdp-langchain/poetry.lock') }} + key: venv-langchain-${{ runner.os }}-3.10-${{ hashFiles('cdp-langchain/poetry.lock') }} - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'