From f104e750b831375bdb1911ffd7abc4bc6e6c41a3 Mon Sep 17 00:00:00 2001 From: Sven Fuchs Date: Wed, 9 Oct 2019 22:03:10 +0200 Subject: [PATCH] Use version: ~> 1.0, remove conditions: v1 (#4162) The version requirement `= 0` advertised in early development stages was an unfortunate choice, as this is going to be the opt-out once the new build config validation feature will be rolled out further. Please use `~> 1.0` instead. The conditions version `v1` is now the default, so this key can be removed. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bd2cae77508..9338c500458 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,4 @@ -conditions: v1 -version: "= 0" +version: ~> 1.0 if: > # Forbid running non-PR pushes from pyup bot not (type != pull_request AND branch =~ ^pyup\-scheduled\-update\-)