This is an automated email from the ASF dual-hosted git repository. dimberman pushed a commit to branch v1-10-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit f30d0d0b344bb0115340844e1a176d669a5bae0c Author: Jarek Potiuk <[email protected]> AuthorDate: Thu Sep 17 12:51:16 2020 +0200 Pins temporarily moto to 1.3.14 (#10986) As described in #10985, moto upgrade causes some AWS tests to fail. Until we fix it, we pin the version to 1.3.14. Part of #10985 (cherry picked from commit 6e5cc4c6a2607a782810ee4650482c89d020eec6) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 92fb3a4..06892de 100644 --- a/setup.py +++ b/setup.py @@ -420,7 +420,8 @@ devel = [ 'jira', 'mock;python_version<"3.3"', 'mongomock', - 'moto>=1.3.14,<2.0.0', + 'moto==1.3.14', # TODO - fix Datasync issues to get higher version of moto: + # See: https://github.com/apache/airflow/issues/10985 'parameterized', 'paramiko', 'pre-commit',
