From 8ca44325b82c7be4de656b0e7e4fb4e05837d7ef Mon Sep 17 00:00:00 2001 From: Ronald van der Meer Date: Mon, 30 Mar 2026 01:11:32 +0200 Subject: [PATCH] Fix build failure caused by redundant License classifier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PEP 639 / setuptools >=68 rejects 'License :: OSI Approved' classifiers when a license SPDX expression is already set via the 'license' key. Remove the classifier — license = "MIT" is sufficient and already satisfies the HA third-party library policy requirement. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 23447e5..b086327 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,6 @@ authors = [ classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12",