From 44e0692e8daaf3ec77523b11461544552deee93b Mon Sep 17 00:00:00 2001 From: Thomas Maschler Date: Thu, 23 Apr 2020 22:59:52 -0400 Subject: [PATCH 1/3] change Instance Type Signed-off-by: Thomas Maschler --- lambda/lambda_function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda/lambda_function.py b/lambda/lambda_function.py index 76ba439..1f1c5ee 100644 --- a/lambda/lambda_function.py +++ b/lambda/lambda_function.py @@ -330,7 +330,7 @@ def start_pipline(subnet): client = boto3.client("ec2") response = client.run_instances( ImageId="ami-02da3a138888ced85", - InstanceType="r5d.24xlarge", + InstanceType="r5ad.24xlarge", KeyName="tmaschler_wri2", UserData=bootstrap, EbsOptimized=True, From 60b4432bbad6a449dc1108279afa92b0ee35ee00 Mon Sep 17 00:00:00 2001 From: Thomas Maschler Date: Mon, 8 Jun 2020 10:52:05 -0400 Subject: [PATCH 2/3] bump up numba version Signed-off-by: Thomas Maschler --- requirements.txt | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index af8ec05..18f7baf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,7 +3,7 @@ google-cloud-storage~=1.14.0 parallelpipe~=0.2.6 numpy~=1.16.2 gdal~=2.4.0 -numba~=0.47.0 +numba~=0.49.1 xmltodict~=0.12.0 Pillow~=7.0.0 ModestMaps~=1.4.7 @@ -12,5 +12,5 @@ werkzeug~=0.16.0 uuid~=1.30 mapbox-vector-tile TileStache~=1.51.13 -raster2points~=0.1.6 +raster2points~=0.1.9 mercantile~=1.0.4 diff --git a/setup.py b/setup.py index 22149ec..bca0992 100644 --- a/setup.py +++ b/setup.py @@ -12,10 +12,10 @@ "google-cloud-storage~=1.14.0", "parallelpipe~=0.2.6", "gdal~=2.4.0", - "numba~=0.47.0", + "numba~=0.49.1", "numpy~=1.16.2", "xmltodict~=0.12.0", - "raster2points~=0.1.6", + "raster2points~=0.1.9", "mercantile~=1.0.4", "boto3~=1.9.170", ], From 0944e3824be127dd1562269bd7304f44c644d594 Mon Sep 17 00:00:00 2001 From: Thomas Maschler Date: Mon, 8 Jun 2020 10:53:19 -0400 Subject: [PATCH 3/3] update version number Signed-off-by: Thomas Maschler --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bca0992..2063e38 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="glad_tile_pipeline", - version="1.0.2", + version="1.0.5", description="Tool to process GLAD tiles", packages=["glad"], author="Thomas Maschler",