From 31935f722bee40ba3e8dc586b8d9f695efd1e6a0 Mon Sep 17 00:00:00 2001 From: king-millez Date: Wed, 23 Feb 2022 18:05:23 +1100 Subject: [PATCH 1/2] Cheeky print statement --- geotiff/geotiff.py | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/geotiff/geotiff.py b/geotiff/geotiff.py index b5939e0..63fcb9a 100644 --- a/geotiff/geotiff.py +++ b/geotiff/geotiff.py @@ -383,7 +383,6 @@ def get_coord_arrays( if bBox == None: i_list = [i for i in range(self.tif_shape[1])] j_list = [i for i in range(self.tif_shape[0])] - print(self.as_crs) return self._convert_coords_array( self.crs_code, self.as_crs, i_list, j_list ) diff --git a/setup.py b/setup.py index 10dea35..7ad998f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools.command.egg_info import egg_info # type: ignore -VERSION = "0.2.4" +VERSION = "0.2.5" # Send to pypi # python3 setup.py sdist bdist_wheel From 6a1d36962f5965dc36a83339b014318b0aba5482 Mon Sep 17 00:00:00 2001 From: king-millez Date: Fri, 17 Jun 2022 14:53:51 +1000 Subject: [PATCH 2/2] Test fixup --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index d0c9df8..a15ebfe 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ pytest tifffile==2021.7.2 numpy pyproj -zarr \ No newline at end of file +zarr==2.10.* diff --git a/setup.py b/setup.py index 7ad998f..5e9402a 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ "tifffile==2021.7.2", "numpy", "pyproj", - "zarr", + "zarr==2.10.*", ], license_files=("LICENSE",), # cmdclass={"egg_info": egg_info_ex},