Repository: incubator-airflow Updated Branches: refs/heads/master d4d8eb932 -> 5157b5a76
[AIRFLOW-1817] use boto3 for s3 dependency Since S3Hook is reimplemented based on the AwsHook using boto3, its package dependencies need to be updated as well. Closes #2790 from m1racoli/fix-setup-s3 Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/5157b5a7 Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/5157b5a7 Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/5157b5a7 Branch: refs/heads/master Commit: 5157b5a7631f2492bacfb705c79d128bd8d8d5d3 Parents: d4d8eb9 Author: Cedrik Neumann <[email protected]> Authored: Wed Nov 15 11:55:13 2017 +0100 Committer: Fokko Driesprong <[email protected]> Committed: Wed Nov 15 11:55:13 2017 +0100 ---------------------------------------------------------------------- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/5157b5a7/setup.py ---------------------------------------------------------------------- diff --git a/setup.py b/setup.py index a4fdf0e..e9d68b3 100644 --- a/setup.py +++ b/setup.py @@ -152,10 +152,7 @@ oracle = ['cx_Oracle>=5.1.2'] postgres = ['psycopg2>=2.7.1'] ssh = ['paramiko>=2.1.1'] salesforce = ['simple-salesforce>=0.72'] -s3 = [ - 'boto>=2.36.0', - 'filechunkio>=1.6', -] +s3 = ['boto3>=1.0.0'] samba = ['pysmbclient>=0.1.3'] slack = ['slackclient>=1.0.0'] statsd = ['statsd>=3.0.1, <4.0']
