From 7a012c6aaea37eeb1f21c8f6fe30af880911d528 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sat, 24 Aug 2024 10:08:00 -0700 Subject: [PATCH] Remove setuptools pin from pyproject (#856) Missed this one: need to change in both requirements and pyproject. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d17d12dc8..2b7e6bea4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ scalene = "scalene.__main__:main" [build-system] build-backend = "setuptools.build_meta" requires = [ - "setuptools>=65.5.1,<71.0", # Pin to setuptools<71.0 to avoid this bug: https://github.com/pypa/setuptools/issues/4496 + "setuptools>=65.5.0", "setuptools_scm>=8", "wheel", "cython",