From 34f3be47a0c8cf537e986fc80115be3d92cd4b91 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 16 Oct 2024 18:22:42 +0200 Subject: [PATCH 1/2] README: Add badges reflecting project information --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 20d1ae8..bdf1f37 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,13 @@ # Grafana import Tool +[![Tests](https://github.com/grafana-toolbox/grafana-import/actions/workflows/tests.yml/badge.svg)](https://github.com/grafana-toolbox/grafana-import/actions/workflows/tests.yml) +[![Coverage](https://codecov.io/gh/grafana-toolbox/grafana-import/branch/main/graph/badge.svg)](https://app.codecov.io/gh/grafana-toolbox/grafana-import) +[![PyPI Version](https://img.shields.io/pypi/v/grafana-import.svg)](https://pypi.org/project/grafana-import/) +[![Python Version](https://img.shields.io/pypi/pyversions/grafana-import.svg)](https://pypi.org/project/grafana-import/) +[![PyPI Downloads](https://pepy.tech/badge/grafana-import/month)](https://pepy.tech/project/grafana-import/) +[![Status](https://img.shields.io/pypi/status/grafana-import.svg)](https://pypi.org/project/grafana-import/) +[![License](https://img.shields.io/pypi/l/grafana-import.svg)](https://pypi.org/project/grafana-import/) + _Export and import Grafana dashboards using the [Grafana HTTP API] and [grafana-client]._ From 1d56241964a1767caf8a1721f164f2b4c7c750a7 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Wed, 16 Oct 2024 18:23:39 +0200 Subject: [PATCH 2/2] CI: Verify support for Python 3.13 --- .github/workflows/tests.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 25ab0d6..c8dbeff 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: os: ["ubuntu-20.04"] - python-version: ["3.6", "3.12"] + python-version: ["3.6", "3.13"] fail-fast: false env: diff --git a/setup.py b/setup.py index bea570e..64860e7 100644 --- a/setup.py +++ b/setup.py @@ -78,6 +78,7 @@ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Communications", "Topic :: Database", "Topic :: Internet",