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
This commit is contained in:
Andrew Nester 2025-03-03 15:53:58 +00:00 committed by GitHub
parent 3b07265113
commit 8b7e0ba683
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -31,8 +31,8 @@ var pythonVersionsShort = []string{
} }
var extraInstalls = map[string][]string{ var extraInstalls = map[string][]string{
"3.12": {"setuptools"}, "3.12": {"setuptools==75.8.2"},
"3.13": {"setuptools"}, "3.13": {"setuptools==75.8.2"},
} }
func TestDefaultPython(t *testing.T) { func TestDefaultPython(t *testing.T) {