From 2d52a203cd32b8fc5f7b1d709d96983b9d216e24 Mon Sep 17 00:00:00 2001 From: Nivesh Dandyan Date: Thu, 5 Feb 2026 16:08:21 +0000 Subject: [PATCH] fix: update setuptools requirement to >=77 for PEP639 support The project uses PEP639 project source metadata (license = "MIT" and license-files = ["LICENSE"]) which requires setuptools >= 77. This fixes installation failures when using older versions of setuptools. Fixes #1052 Co-Authored-By: Claude (claude-opus-4-5) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index acb713a86..46795fdba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=61", "wheel"] +requires = ["setuptools>=77", "wheel"] build-backend = "setuptools.build_meta" [project]