Skip to content

Commit

Permalink
removing additional matrix.python references and coding for 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
stat committed Nov 5, 2024
1 parent 8b65087 commit d8b7f3c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit d8b7f3c

Please sign in to comment.