Skip to content

Commit

Permalink
Merge pull request #40 from king-millez/main
Browse files Browse the repository at this point in the history
Cheeky print statement
  • Loading branch information
KipCrossing committed Jun 20, 2022
2 parents 81fafb5 + 6a1d369 commit ab5d7c7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion geotiff/geotiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ pytest
tifffile==2021.7.2
numpy
pyproj
zarr
zarr==2.10.*
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -35,7 +35,7 @@
"tifffile==2021.7.2",
"numpy",
"pyproj",
"zarr",
"zarr==2.10.*",
],
license_files=("LICENSE",),
# cmdclass={"egg_info": egg_info_ex},
Expand Down

0 comments on commit ab5d7c7

Please sign in to comment.