From 9838540535410758e2fc6b9e0b723c6948c5c4fb Mon Sep 17 00:00:00 2001 From: mhucka Date: Fri, 13 Jun 2025 20:29:54 +0000 Subject: [PATCH] Require that version of setuptools be recent For some reason, if we don't require a recent version of setuptools explicitly, then on Windows runners on GitHub, when creating virtual environmwents, we end up with a very old version that behaves differently. Setuptools is up to version 80 today, so version 78 should be reasonable without being excessively stringent. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 529da8892..aaa5cc739 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,4 +5,4 @@ numpy>=1.26.0 # CMake will find them. It makes a crucial difference in some environments. pybind11[global] typing_extensions -setuptools +setuptools>=78