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/11 22:35:03 UTC

[airflow] 22/32: 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

commit 5c9ff4d8176d4409dd19b5c16706d1936102279a
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',