From 4627d8d3c8ab281d46bb40b5a558a587c6d1aeab Mon Sep 17 00:00:00 2001 From: Catherine Date: Fri, 21 Jul 2023 03:28:48 +0000 Subject: [PATCH] pyproject: depend on `setuptools>=67.0` instead of `~=67.0`. The latter is overly strict and breaks installation with PDM (which is more principled than our other PEP517 build backends). --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5ee95c1..84cdc11 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["wheel", "setuptools~=67.0", "setuptools_scm[toml]>=6.2"] +requires = ["wheel", "setuptools>=67.0", "setuptools_scm[toml]>=6.2"] build-backend = "setuptools.build_meta" [project]