From 88b291d989f530069fe1507b1d8e79f2bc562068 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Fri, 20 Jul 2018 11:49:34 -0700 Subject: [PATCH] Cache /usr/local/lib/python3.6 when using pip --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 27157c5..82ffd8e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,8 +19,8 @@ jobs: # Download and cache dependencies - restore_cache: keys: - - v1-dependencies-miniconda3-4.5.4-{{ checksum "setup.py" }}-{{ checksum "dev-requirements.txt" }} - - v1-dependencies-miniconda3-4.5.4- + - v1-dependencies-py3.6-{{ checksum "setup.py" }}-{{ checksum "dev-requirements.txt" }} + - v1-dependencies-py3.6- - run: name: install dependencies @@ -30,8 +30,8 @@ jobs: - save_cache: paths: - - /opt/conda - key: v1-dependencies-miniconda3-4.5.4-{{ checksum "setup.py" }}-{{ checksum "dev-requirements.txt" }} + - /usr/local/lib/python3.6 + key: v1-dependencies-py3.6-{{ checksum "setup.py" }}-{{ checksum "dev-requirements.txt" }} - run: name: run unit tests