From 8b7e0ba6837b056caf986b605f3cf06e0d879d0a Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Mon, 3 Mar 2025 15:53:58 +0000 Subject: [PATCH] test: Lock setuptools version in TestDefaultPython test (#2421) ## Changes Lock setuptools version to 75.8.2 (latest as of March 3, 2025) ## Why As part of the tests `uv install` was installing latest version of setuptools which led to all tests started to fail on Feb 25 when 75.8.1 setuptools version was released and which changed the naming of the output built artifacts https://setuptools.pypa.io/en/stable/history.html#v75-8-1 This change prevents us from breakages like this. ## Tests Existing tests pass --- integration/bundle/init_default_python_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/bundle/init_default_python_test.go b/integration/bundle/init_default_python_test.go index ca66491ab..9ac8f47bd 100644 --- a/integration/bundle/init_default_python_test.go +++ b/integration/bundle/init_default_python_test.go @@ -31,8 +31,8 @@ var pythonVersionsShort = []string{ } var extraInstalls = map[string][]string{ - "3.12": {"setuptools"}, - "3.13": {"setuptools"}, + "3.12": {"setuptools==75.8.2"}, + "3.13": {"setuptools==75.8.2"}, } func TestDefaultPython(t *testing.T) {