Changed minimum mongo version to 3.6

Because Ubuntu 18.04 still provides only 3.6 and people may install that way.
https://launchpad.net/ubuntu/bionic/+source/mongodb
This commit is contained in:
Shay Nehmad 2019-06-12 18:28:25 +03:00
parent 28f2d32579
commit 65ca86f6c0
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import sys
import time
import logging
MINIMUM_MONGO_DB_VERSION_REQUIRED = "4.0.0"
MINIMUM_MONGO_DB_VERSION_REQUIRED = "3.6.0"
BASE_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))