From f77151a97e8f1d07439ac41721fa497fbbda6d9e Mon Sep 17 00:00:00 2001 From: talk4-kmastalier <30729618+talk4-kmastalier@users.noreply.github.com> Date: Tue, 16 Aug 2022 12:33:19 +0200 Subject: [PATCH] Restrict setuptools version to 65), removed old deprecated msvc modules. It breaks the build of some packages which depend on this. See: https://github.com/pypa/setuptools/issues/3532 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1b655c8..937b6f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [build-system] requires = [ - "setuptools >= 40.6.0", + "setuptools >= 40.6.0, < 65.0.0", "wheel", "numpy == 1.21.6", ]