From c8df89eeb68a2beb992d0478227bea7d9eff3ab1 Mon Sep 17 00:00:00 2001 From: Mikhail Novosyolov Date: Mon, 15 Jun 2026 12:51:34 +0300 Subject: [PATCH] Fix invalid trove classifiers in pyproject.toml Use canonical trove classifiers that pass setuptools validation: - "GNU General Public License v2 or later (GPLv2+)" instead of "GPL 2 or later" - "Operating System :: POSIX :: Linux" instead of "Operating System :: Linux" Search at https://codesearch.debian.net/ showed that old variants are not used. Co-authored-by: Z.AI GLM --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e0b0eedba..f579e7174 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,8 +16,8 @@ license = { file = "COPYING" } readme = "README.md" classifiers = [ "Programming Language :: Python :: 3", - "License :: OSI Approved :: GPL 2 or later", - "Operating System :: Linux", + "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", + "Operating System :: POSIX :: Linux", ] requires-python = ">=3.7"