Skip to content

Commit

Permalink
chore: ensure pkg caches are python version specific
Browse files Browse the repository at this point in the history
In order to catch dependency issues with greenlet on python 3.12 caches
should be Python version dependent.

Signed-off-by: Silvano Cirujano Cuesta <[email protected]>
  • Loading branch information
Silvanoc committed Nov 9, 2023
1 parent a4ba67d commit c169ace
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}

#----------------------------------------------
# install dependencies if cache does not exist
Expand Down

0 comments on commit c169ace

Please sign in to comment.