File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
GeoHealthCheck/plugins/probe Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def perform_request(self):
6363 result .start ()
6464 try :
6565 # Pick a random layer
66- layer_name = random .sample (wms .contents .keys (), 1 )[0 ]
66+ layer_name = random .sample (list ( wms .contents .keys () ), 1 )[0 ]
6767 layer = wms [layer_name ]
6868
6969 # TODO Only use EPSG:4326, later random CRS
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ for installation and management. ``Cron`` was used for scheduling the actual
3232healthchecks before v0.5.0.
3333
3434Starting from version v0.8.0.0 GeoHealthCheck requires **python 3 **. Previous
35- versions require **python 2 **.
35+ versions require **python 2 **. GeoHealthCheck is at least compatible with Python versions
36+ up to and including `3.12.3 `. Higher Python versions may work but are untested.
3637
3738Install
3839-------
You can’t perform that action at this time.
0 commit comments