From 5a30098b152d8092cbffed0ef81b22d217d3c045 Mon Sep 17 00:00:00 2001 From: Ali Date: Tue, 2 May 2017 17:06:49 +0100 Subject: [PATCH 1/3] fix: bump smart open version to fix pipeline uploader entry point version mismatch --- aws_utils/utils.py | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/aws_utils/utils.py b/aws_utils/utils.py index b8e89b9..37658eb 100644 --- a/aws_utils/utils.py +++ b/aws_utils/utils.py @@ -4,7 +4,6 @@ import boto - try: import configparser except ImportError: diff --git a/setup.py b/setup.py index 1cf7974..07c9c20 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ INSTALL_REQUIRES = [ 'boto>=2.38.0',# need to stay in this version as sqs.get_queue function stops working when we upgrade 'boto3>=1.2.3', - 'smart_open==1.3.2',# smart open must be 1.3.2 because in 1.3.3 onward the gzip write functionality has been removed + 'smart_open==1.3.3',# smart open must be 1.3.2 because in 1.3.3 onward the gzip write functionality has been removed 'dateutils>=0.6.6', 'retrying>=1.3.3' ] From eea563e0115f33d3ea43109db2e087638b28a9c7 Mon Sep 17 00:00:00 2001 From: aliellis Date: Tue, 2 May 2017 17:18:20 +0100 Subject: [PATCH 2/3] use range for smart open version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 07c9c20..80a1400 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ INSTALL_REQUIRES = [ 'boto>=2.38.0',# need to stay in this version as sqs.get_queue function stops working when we upgrade 'boto3>=1.2.3', - 'smart_open==1.3.3',# smart open must be 1.3.2 because in 1.3.3 onward the gzip write functionality has been removed + 'smart_open>=1.3.2,<=1.3.3',# smart open must be within this range 'dateutils>=0.6.6', 'retrying>=1.3.3' ] From 4a21793f044dc640fc6ee0ca3371ff80ed32d287 Mon Sep 17 00:00:00 2001 From: aliellis Date: Tue, 2 May 2017 17:37:42 +0100 Subject: [PATCH 3/3] pin to specific version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 80a1400..127fdda 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ INSTALL_REQUIRES = [ 'boto>=2.38.0',# need to stay in this version as sqs.get_queue function stops working when we upgrade 'boto3>=1.2.3', - 'smart_open>=1.3.2,<=1.3.3',# smart open must be within this range + 'smart_open==1.3.3'# smart open must be within this range 'dateutils>=0.6.6', 'retrying>=1.3.3' ]