Skip to content

Commit

Permalink
Merge branch 'master' into test/base-example
Browse files Browse the repository at this point in the history
  • Loading branch information
zacdezgeo committed Jan 14, 2025
2 parents 7483124 + eb7a27e commit c3d71fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ee_plugin/ee_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ def check_version(self):
try:
# Attempt to get the latest version from the server
latest_version = requests.get(
"https://qgis-ee-plugin.appspot.com/get_latest_version"
"https://qgis-ee-plugin.appspot.com/get_latest_version",
# requires requests > 2.4, can through requests.exceptions.Timeout (which is a RequestException, so already handled)
timeout=10,
).text

if VERSION < latest_version:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ ratelim
earthengine-api>=0.1.335
six>=1.13
httplib2
requests>2.4

0 comments on commit c3d71fe

Please sign in to comment.