From 77e65f089aae346e363dc2fa7bd78e00f83104a5 Mon Sep 17 00:00:00 2001 From: danielyan Date: Mon, 9 Feb 2026 20:06:11 +0000 Subject: [PATCH] =?UTF-8?q?Fix=20SPDX=20license=20identifier:=20Python-2.0?= =?UTF-8?q?=20=E2=86=92=20PSF-2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The LICENSE.PSF file corresponds to PSF-2.0, not Python-2.0. PSF-2.0 is GPL-compatible while Python-2.0 is not, so this distinction matters for downstream license compliance checks. Fixes #492 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 520208c..8f781ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ authors = [ maintainers = [ { name = "Jason Madden", email = "jason@seecoresoftware.com" } ] -license = "MIT AND Python-2.0" +license = "MIT AND PSF-2.0" license-files = [ 'LICENSE', 'LICENSE.PSF',