From 90279d4cf9d49a723f0cab181b40a34ed5686f6c Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Tue, 17 Oct 2017 20:26:17 -0700 Subject: [PATCH] Enable pip cache in Travis CI Can speed up builds and reduce load on PyPI servers. For more information, see: https://docs.travis-ci.com/user/caching/#pip-cache --- .travis.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 73fd9c459..1d065b178 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,7 @@ language: python sudo: false dist: trusty -cache: - directories: - - $HOME/.cache/pip +cache: pip python: - "pypy-5.4.1" - "3.6"