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 2020/12/23 17:53:35 UTC

[airflow] branch v1-10-stable updated: Moved boto3 limitation to snowflake (#13286)

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

potiuk pushed a commit to branch v1-10-stable
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v1-10-stable by this push:
     new 022f9e2  Moved boto3 limitation to snowflake (#13286)
022f9e2 is described below

commit 022f9e2234e22ea556013bc7b6e5cb15d41cbf11
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Wed Dec 23 18:52:07 2020 +0100

    Moved boto3 limitation to snowflake (#13286)
    
    Fixes #13093
---
 setup.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index ddd8417..2b6e00d 100644
--- a/setup.py
+++ b/setup.py
@@ -182,7 +182,7 @@ atlas = [
     'atlasclient>=0.1.2',
 ]
 aws = [
-    'boto3~=1.10,<1.11',  # required by snowflake
+    'boto3~=1.10',
 ]
 azure_blob_storage = [
     'azure-storage>=0.34.0, <0.37.0',
@@ -390,6 +390,7 @@ slack = [
     'websocket-client<0.55.0'
 ]
 snowflake = [
+    'boto3<1.11',
     'snowflake-connector-python>=1.5.2',
     'snowflake-sqlalchemy>=1.1.0',
 ]