From 9e7665c07bce55ff89f75a2b54851528f2958614 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Sun, 30 Jun 2019 14:16:28 -0400 Subject: [PATCH] CircleCI: Try another way to cache pip stuff --- .circleci/config.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b201a55..e53de52 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,14 +10,13 @@ jobs: # Install Tox. - restore_cache: - key: dep + key: pip - run: - command: sudo pip install tox + command: pip install tox - save_cache: - key: dep + key: pip paths: - - "/usr/local/bin" - - "/usr/local/lib/python3.7/site-packages" + - "~/.cache/pip" # Run Tox. - restore_cache: