From 56b3ab24801944b007ab360db368c08d276446b8 Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 23 Mar 2023 16:10:43 -0400 Subject: [PATCH] Require wheel at least 0.38.1 The current pypi package fails snyk with ReDos security issue. --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index f682775a2..112c841c9 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -2,7 +2,7 @@ requires = [ "setuptools>=45", "setuptools_scm[toml]>=6.2", - "wheel" + "wheel>=0.38.1" ] build-backend = "setuptools.build_meta" [tool.setuptools_scm]