mirror of https://github.com/databricks/cli.git
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:
parent
3b07265113
commit
8b7e0ba683
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue