From 9995bffbe474782fd1ec9d5802be83697806c35b Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Fri, 11 Oct 2024 23:40:49 +0200 Subject: [PATCH] Store license identifier inside the License-Expression metadata field (#4479) --- CHANGES.md | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 41fa350ae97..d50bcb49e00 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -22,6 +22,9 @@ +- Store license identifier inside the `License-Expression` metadata field, see + [PEP 639](https://peps.python.org/pep-0639/). (#4479) + ### Parser diff --git a/pyproject.toml b/pyproject.toml index 19782ba96cc..568ba53186f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ build-backend = "hatchling.build" [project] name = "black" description = "The uncompromising code formatter." -license = { text = "MIT" } +license = "MIT" requires-python = ">=3.9" authors = [ { name = "Ɓukasz Langa", email = "lukasz@langa.pl" },