From 24b04b6b70ee5d12997330293a835d874c85c1c4 Mon Sep 17 00:00:00 2001 From: Asher Foa <1268088+asherf@users.noreply.github.com> Date: Sun, 3 Nov 2019 20:13:11 -0800 Subject: [PATCH] Fix deprecations in travis.yaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://docs.travis-ci.com/user/reference/overview/#deprecated-virtualization-environments https://blog.travis-ci.com/2019-08-27-deployment-tooling-dpl-v2-preview-release > skip_cleanup is now deprecated, and cleanup is false by default. The default used to be true, so you had to opt out using skip_cleanup … and has been used a lot. Cleaning up the working directory from any left over build artifacts only made sense for few providers, so we have changed this default. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3e6eb3809..8d22aa98f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ dist: xenial language: python -sudo: false services: - docker python: @@ -54,7 +53,7 @@ deploy: on: branch: - master - skip_cleanup: true + cleanup: false skip_existing: true # - provider: pypi # distributions: sdist bdist_wheel