summaryrefslogtreecommitdiffstats
path: root/.circleci/config.yml
diff options
context:
space:
mode:
Diffstat (limited to '.circleci/config.yml')
-rw-r--r--.circleci/config.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index d0ddcbc5..9a276ad2 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -41,9 +41,7 @@ aliases:
- run: python -V | tee /tmp/.python-version
- restore_cache:
keys:
- - v1-dependencies-{{ checksum "/tmp/.python-version" }}-{{ checksum "api/requirements.txt" }}
- - v1-dependencies-{{ checksum "/tmp/.python-version" }}-
- - v1-dependencies-
+ - v2-dependencies-{{ checksum "/tmp/.python-version" }}-{{ checksum "api/requirements.txt" }}
- run: python3 -m venv venv
- run:
command: |
@@ -53,7 +51,7 @@ aliases:
pip install flake8
touch front/dist/index.html
- save_cache:
- key: v1-dependencies-{{ checksum "/tmp/.python-version" }}-{{ checksum "api/requirements.txt" }}
+ key: v2-dependencies-{{ checksum "/tmp/.python-version" }}-{{ checksum "api/requirements.txt" }}
paths:
- ./venv
- *persist_to_workspace