Fix the Travis deployment condition

See https://github.com/MongoEngine/mongoengine/issues/2104 for details.

For now I'm hardcoding `$MONGODB = 3.4.17` just to get a release out there,
but we should probably use the globals going forward. Will do that in
a follow-up commit once I get the `travis-conditions` gem up and running and
hence can test `.travis.yml` changes without deploying.
This commit is contained in:
Stefan Wojcik 2019-06-25 16:48:51 +02:00
parent b1002dd4f9
commit 5c91877b69

View File

@ -102,5 +102,5 @@ deploy:
on:
tags: true
repo: MongoEngine/mongoengine
condition: ($PYMONGO = 3.x) && ($MONGODB = 3.4)
condition: ($PYMONGO = 3.x) && ($MONGODB = 3.4.17)
python: 2.7