From d5247286d98d84b7012bef205ff1068814337392 Mon Sep 17 00:00:00 2001 From: "Patrick M. Niedzielski" Date: Mon, 9 Feb 2026 14:31:55 -0500 Subject: [PATCH] Chore: Update from deprecated TOML table license identifier This patch fixes a warning generated while building tests on newer versions of setuptools: Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). The TOML table we use already contains an SPDX expression and can easily be replaced with a simple string. This change must be done before 18 Feb 2027. Signed-off-by: Patrick M. Niedzielski --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a02ff84..31cc6c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ authors = [ {name = "Bloomberg Finance LP"} ] dynamic = ["version"] -license = {text = "Apache-2.0"} +license = "Apache-2.0" classifiers = [ "Intended Audience :: Developers", "Operating System :: POSIX :: Linux",