From e7ab0ae1ae46034eee0e5df04e7663084533566f Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Sun, 26 Aug 2018 13:57:26 +0200 Subject: [PATCH] [AIRFLOW-2960] Pin boto3 to <1.8 (#3810) Boto 1.8 has been released a few days ago and they break our tests. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b48087084def9..03edaaced6cd4 100644 --- a/setup.py +++ b/setup.py @@ -163,7 +163,7 @@ def write_version(filename=os.path.join(*['airflow', 'elasticsearch>=5.0.0,<6.0.0', 'elasticsearch-dsl>=5.0.0,<6.0.0' ] -emr = ['boto3>=1.0.0'] +emr = ['boto3>=1.0.0, <1.8.0'] gcp_api = [ 'httplib2>=0.9.2', 'google-api-python-client>=1.6.0, <2.0.0dev', @@ -201,7 +201,7 @@ def write_version(filename=os.path.join(*['airflow', qds = ['qds-sdk>=1.9.6'] rabbitmq = ['librabbitmq>=1.6.1'] redis = ['redis>=2.10.5'] -s3 = ['boto3>=1.7.0'] +s3 = ['boto3>=1.7.0, <1.8.0'] salesforce = ['simple-salesforce>=0.72'] samba = ['pysmbclient>=0.1.3'] segment = ['analytics-python>=1.2.9']