From e5166fc3d3c41fda5e6798537717adc9a0594da5 Mon Sep 17 00:00:00 2001 From: Gordon Ball Date: Tue, 25 Jan 2022 15:18:02 +0100 Subject: [PATCH] requirements: unpin boto3 and tenacity to avoid conflicts with MWAA --- requirements.txt | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 055417ad..68107be0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ dbt-core==1.0.* pyathena==2.2.0 -boto3==1.18.12 -tenacity==6.3.1 +boto3 +tenacity diff --git a/setup.py b/setup.py index 81292f8b..23ec76a9 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ def _dbt_athena_version() -> str: install_requires=[ "dbt-core~=1.0.0", "pyathena==2.2.0", - "boto3==1.18.12", - "tenacity==6.3.1", + "boto3", + "tenacity", ] )