From 50f8d5e13c70686da3b865832ae3e0ec4fa4aad2 Mon Sep 17 00:00:00 2001 From: Matthew Neal Date: Wed, 29 Aug 2018 12:42:31 -0400 Subject: [PATCH] Pin boto3 version to 1.7.84 Pinning boto3 to this version would remove the mismatch between boto3 and the botocore dependency in setup.py. Closes #1800 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 16aaf1452..bcb48a967 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import sys install_requires = [ "Jinja2>=2.7.3", "boto>=2.36.0", - "boto3>=1.6.16", + "boto3>=1.6.16,<1.8", "botocore>=1.9.16,<1.11", "cookies", "cryptography>=2.0.0",