Merge pull request #2056 from bagerard/support_mongo36

Add support for MongoDB 3.6 and Python3.7 in travis
This commit is contained in:
erdenezul
2019-05-18 17:06:48 +02:00
committed by GitHub
6 changed files with 38 additions and 24 deletions

View File

@@ -6,6 +6,7 @@ from mongoengine.connection import get_connection
# Constant that can be used to compare the version retrieved with
# get_mongodb_version()
MONGODB_36 = (3, 6)
MONGODB_34 = (3, 4)
MONGODB_32 = (3, 2)
MONGODB_3 = (3, 0)