Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GeoHealthCheck/plugins/probe/wmsdrilldown.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def perform_request(self):
result.start()
try:
# Pick a random layer
layer_name = random.sample(wms.contents.keys(), 1)[0]
layer_name = random.sample(list(wms.contents.keys()), 1)[0]
layer = wms[layer_name]

# TODO Only use EPSG:4326, later random CRS
Expand Down
3 changes: 2 additions & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ for installation and management. ``Cron`` was used for scheduling the actual
healthchecks before v0.5.0.

Starting from version v0.8.0.0 GeoHealthCheck requires **python 3**. Previous
versions require **python 2**.
versions require **python 2**. GeoHealthCheck is at least compatible with Python versions
up to and including `3.12.3`. Higher Python versions may work but are untested.

Install
-------
Expand Down
Loading