From 0b2940a67be26854290a20a3ee0e4e76cdc1faa0 Mon Sep 17 00:00:00 2001 From: insane Date: Tue, 15 Apr 2025 20:32:53 +0300 Subject: [PATCH] Removed duplicate licence declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit license-files = ["LICENSE"] is no longer valid under the [project] table in pyproject.toml — it was deprecated in PEP 621 and is now rejected by modern setuptools. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f91d6e3f..2027c175 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "pint==0.24.*", ] license = "GPL-2.0-only" -license-files = ["LICENSE"] +# license-files = ["LICENSE"] [project.urls] Homepage = "https://github.com/brendan-w/python-OBD"