From 601eefd8237402daeccd022638bdc66fd57e319e Mon Sep 17 00:00:00 2001 From: Raj Kumar Date: Fri, 11 Mar 2022 19:43:25 -0800 Subject: [PATCH] Remove setuptools from cache before reinstalling Seems that travis is using cached wheel of newer version, which is causing the bug in 60.9 to remain although we've pinned to 60.8.2. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 706059a..3e49e52 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,7 @@ after_success: - codecov before_deploy: - python verify_tag.py --tag $TRAVIS_TAG + - pip cache remove setuptools - pip install setuptools==60.8.2 deploy: provider: pypi