You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/03/03 09:33:00 UTC

[airflow] 36/41: Pin moto to <2 (#14433)

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

potiuk pushed a commit to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 80d2644e471feef728d235f83a1a723b10f80d57
Author: Kaxil Naik <ka...@gmail.com>
AuthorDate: Wed Feb 24 22:22:54 2021 +0000

    Pin moto to <2 (#14433)
    
    https://pypi.org/project/moto/#history -- moto 2.0.0 was released yesterday and is causing CI failures
    (cherry picked from commit 802159767baf1768d92c6047c2fdb2094ee7a2a8)
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index ad4fdd5..2867b36 100644
--- a/setup.py
+++ b/setup.py
@@ -491,7 +491,7 @@ devel = [
     # See: https://github.com/spulec/moto/issues/3535
     'mock<4.0.3',
     'mongomock',
-    'moto',
+    'moto<2',
     'mypy==0.770',
     'parameterized',
     'paramiko',