From e7884e2aaf290405d42735bd15a860ffdf67cd80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Philip=20G=C3=B6pfert?= Date: Wed, 22 Mar 2023 10:08:18 +0100 Subject: [PATCH] Require younger setuptools There is a known vulnerability in setuptools version 65.5.0. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 575f59b4..449bf70f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] # These are the assumed default build requirements from pip: # https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support -requires = ["setuptools>=40.8.0", "wheel"] +requires = ["setuptools>=65.5.1", "wheel"] build-backend = "setuptools.build_meta" [versioneer]