You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/08/02 10:43:49 UTC

[airflow] branch v1-10-test updated: Pin pymongo version to <3.11.0

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-test by this push:
     new f83560d  Pin pymongo version to <3.11.0
f83560d is described below

commit f83560dcf3ea001536f07d72c7a10ebb3ccca569
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Sun Aug 2 11:42:39 2020 +0100

    Pin pymongo version to <3.11.0
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index e11ce70..35323d2 100644
--- a/setup.py
+++ b/setup.py
@@ -307,7 +307,7 @@ ldap = [
 ]
 mongo = [
     'dnspython>=1.13.0,<2.0.0',
-    'pymongo>=3.6.0',
+    'pymongo>=3.6.0,<3.11.0',
 ]
 mssql = [
     'pymssql~=2.1.1',