Skip to content

Commit

Permalink
Remove python version from circleci cache key (#4134)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtraglia authored Feb 19, 2025
1 parent b9f8a75 commit 686e853
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ commands:
description: "Restore the cache with pyspec keys"
steps:
- restore_cached_venv:
venv_name: v33-pyspec
reqs_checksum: cache-{{ checksum "setup.py" }}-{{ checksum "pyproject.toml" }}-{{ python3 --version }}
venv_name: v34-pyspec
reqs_checksum: cache-{{ checksum "setup.py" }}-{{ checksum "pyproject.toml" }}
save_pyspec_cached_venv:
description: Save a venv into a cache with pyspec keys"
description: "Save a venv into a cache with pyspec keys"
steps:
- save_cached_venv:
venv_name: v33-pyspec
reqs_checksum: cache-{{ checksum "setup.py" }}-{{ checksum "pyproject.toml" }}-{{ python3 --version }}
venv_name: v34-pyspec
reqs_checksum: cache-{{ checksum "setup.py" }}-{{ checksum "pyproject.toml" }}
venv_path: ./venv
jobs:
checkout_specs:
Expand Down

0 comments on commit 686e853

Please sign in to comment.