From 9c90af19673f8513f069a62e5e8d3aeae3c4f454 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Mon, 22 Jun 2026 15:03:19 -0700 Subject: [PATCH] `setup.py`: License SPDX The license metadata was replaced with a standard SPDX identifier. --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7d973046e5..94d0acb003 100644 --- a/setup.py +++ b/setup.py @@ -237,7 +237,8 @@ def build_extension(self, ext): 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: 3.14', - ('License :: OSI Approved :: ' - 'GNU Lesser General Public License v3 or later (LGPLv3+)'), ], + # new PEP 639 format + license="LGPL-3.0-or-later", + license_files=["COPYING.LESSER", "COPYING"], )