Skip to content

Commit

Permalink
Bumped version in one of the files
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-m-mudd committed Dec 21, 2023
1 parent 4b7bb4a commit 5dbb1fb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,9 @@ Some fixes
Important fix

* Removed descartes dependency and switched this to a direct plotting routine. This fixes an error caused by transition to python 3.9 in google colab

0.4.12 (2023-03-28)
-------------------

* Trying to solve a weird problem with conversion to UTM
* Making hiding API key for opentopography
7 changes: 5 additions & 2 deletions lsdviztools/lsdbasemaptools/lsdmap_otgrabber.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,11 @@ def download_pythonic(self):
fwithoutpath= self.prefix+"_"+self.source + ".tif"


print("I am going to download the following for you:")
print(url_string)
url_string_no_api = 'https://portal.opentopography.org/API/globaldem?demtype=%s&south=%s&north=%s&west=%s&east=%s&outputFormat=GTiff'%(self.source,self.latitude_S,self.latitude_N,self.longitude_W,self.longitude_E)


print("I am going to download a file from opentopography (I've removed the API key):")
print(url_string_no_api)
print("This might take a little while, depending on the size of the file. ")

print("The filename will be:")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.11
current_version = 0.4.12
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/LSDTopotools/lsdviztools',
version='0.4.11',
version='0.4.12',
zip_safe=False,
)

0 comments on commit 5dbb1fb

Please sign in to comment.