From 598c44cab0050699180bf2a60c11330d39cd569d Mon Sep 17 00:00:00 2001 From: Abhisar Mehta Date: Sat, 21 Feb 2026 11:31:25 +0530 Subject: [PATCH] chore: remove deprecated license classifier from pyproject.toml The SPDX license expression `license = "Apache-2.0"` is already set in [project]. setuptools >= 77.0.0 warns when both a SPDX license expression and a legacy `License ::` classifier are present, because the classifier is redundant and deprecated (PEP 639). Remove the classifier to silence the deprecation warning. Closes #523 --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 040da8c2..52582181 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,6 @@ authors = [ ] classifiers = [ "Intended Audience :: Developers", - "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only",