From d25a9ccbd3853f4c8fc366be77391d6f5cf91899 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Mon, 27 Apr 2026 14:02:28 +0200 Subject: [PATCH 1/3] Update license information in pyproject.toml Fixes license specifiers according to https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license-and-license-files --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0cff85d9..ce8721d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,9 @@ name = "choreographer" description = "Devtools Protocol implementation for chrome." readme = "README.md" requires-python = ">=3.8" -license = { "file" = "LICENSE.md" } +[project] +license = "MIT" +license-files = [ "LICENSE.md" ] dynamic = ["version"] authors = [ {name = "Andrew Pikul", email="ajpikul@gmail.com"}, From fb3b005d2917b210f44fb5876ad5000d8066d286 Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Mon, 27 Apr 2026 14:04:26 +0200 Subject: [PATCH 2/3] Remove stray section --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ce8721d3..02ca206e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,6 @@ name = "choreographer" description = "Devtools Protocol implementation for chrome." readme = "README.md" requires-python = ">=3.8" -[project] license = "MIT" license-files = [ "LICENSE.md" ] dynamic = ["version"] From 29aff3e841d89ef64e449ed3e8cd5d77b9da794c Mon Sep 17 00:00:00 2001 From: Erik Cederstrand Date: Mon, 27 Apr 2026 23:41:06 +0200 Subject: [PATCH 3/3] Fix ruff --- src/choreographer/cli/_cli_utils_no_qa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/choreographer/cli/_cli_utils_no_qa.py b/src/choreographer/cli/_cli_utils_no_qa.py index 562c06aa..4b6a7bda 100644 --- a/src/choreographer/cli/_cli_utils_no_qa.py +++ b/src/choreographer/cli/_cli_utils_no_qa.py @@ -12,7 +12,7 @@ # ruff has line-level and file-level QA suppression # so lets give diagnose a separate file -# ruff: noqa: PLR0915, C901, S603, BLE001, S607, PERF203, TRY002, T201, PLR0912, SLF001 +# ruff: noqa: PLR0915, C901, BLE001, S607, PERF203, TRY002, T201, PLR0912, SLF001 # ruff: noqa: PLC0415 # ruff: noqa: F401, ERA001 # temporary, sync # ruff: noqa: PLC0415 - import at time of file