diff options
Diffstat (limited to 'ansible_collections/community/grafana/hacking')
-rw-r--r-- | ansible_collections/community/grafana/hacking/find_grafana_versions.py | 7 | ||||
-rw-r--r-- | ansible_collections/community/grafana/hacking/requirements.txt | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/ansible_collections/community/grafana/hacking/find_grafana_versions.py b/ansible_collections/community/grafana/hacking/find_grafana_versions.py index 06625a2d5..b31fc530a 100644 --- a/ansible_collections/community/grafana/hacking/find_grafana_versions.py +++ b/ansible_collections/community/grafana/hacking/find_grafana_versions.py @@ -7,11 +7,14 @@ import requests def get_by_major(version): if version.startswith("v"): version = version[1:] - return (version[0], version, int(version.replace('.', ''))) + return (version[0], version, int(version.replace(".", ""))) def get_grafana_releases(): - r = requests.get('https://api.github.com/repos/grafana/grafana/releases?per_page=50', headers={"Accept": "application/vnd.github.v3+json"}) + r = requests.get( + "https://api.github.com/repos/grafana/grafana/releases?per_page=50", + headers={"Accept": "application/vnd.github.v3+json"}, + ) if r.status_code != 200: raise Exception("Failed to get releases from GitHub") return r.json() diff --git a/ansible_collections/community/grafana/hacking/requirements.txt b/ansible_collections/community/grafana/hacking/requirements.txt index ced51d094..2c24336eb 100644 --- a/ansible_collections/community/grafana/hacking/requirements.txt +++ b/ansible_collections/community/grafana/hacking/requirements.txt @@ -1 +1 @@ -requests==2.28.0 +requests==2.31.0 |