From 66e853977740282f242c971dc3e135199aac9510 Mon Sep 17 00:00:00 2001 From: Sebastien Morais Date: Mon, 16 Dec 2024 08:53:01 +0100 Subject: [PATCH 1/2] Revert "Apply PEP 639 (#1377)" This reverts commit 3a5a49ecca857375ee63663c8cbf54b17116d34d. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0b598099f..aee64d792 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,13 +8,13 @@ build-backend = "hatchling.build" [project] name = "attrs" authors = [{ name = "Hynek Schlawack", email = "hs@ox.cx" }] -license = "MIT" -license-files = ["LICENSE"] +license = { text = "MIT" } requires-python = ">=3.8" description = "Classes Without Boilerplate" keywords = ["class", "attribute", "boilerplate"] classifiers = [ "Development Status :: 5 - Production/Stable", + "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", From ffd4845c234c6f6e22cdf42ef7f227e238900067 Mon Sep 17 00:00:00 2001 From: Sebastien Morais Date: Mon, 16 Dec 2024 15:45:11 +0100 Subject: [PATCH 2/2] REFACTOR: Use hugovk approach --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index aee64d792..a8820f5aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,8 @@ build-backend = "hatchling.build" [project] name = "attrs" authors = [{ name = "Hynek Schlawack", email = "hs@ox.cx" }] -license = { text = "MIT" } +license = "MIT" +license-files = ["LICENSE"] requires-python = ">=3.8" description = "Classes Without Boilerplate" keywords = ["class", "attribute", "boilerplate"]