From 40ba51ac43591cbc8547f8d2db6c7ac6d1d97cee Mon Sep 17 00:00:00 2001 From: Stefan Wojcik Date: Wed, 12 Jun 2019 12:08:11 +0200 Subject: [PATCH] Try a different deployment condition The previous one was a verbatim copy-paste of what TravisCI's Support suggested to me, but sadly it didn't work. See https://travis-ci.org/MongoEngine/mongoengine/jobs/544655132. That build should've triggered a deployment. This time I'm trying a different syntax, primarily influenced by https://docs.travis-ci.com/user/conditions-v1#boolean-operators. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9f760806..3afc9965 100644 --- a/.travis.yml +++ b/.travis.yml @@ -95,5 +95,5 @@ deploy: on: tags: true repo: MongoEngine/mongoengine - condition: ($PYMONGO = 3.x) AND ($MONGODB = 3.4) + condition: $PYMONGO = 3.x AND $MONGODB = 3.4 python: 2.7