Skip to content

Commit 815b17e

Browse files
authored
Add uv as a required dependency for codegen for early return (#1395)
Add `uv` as a required dependency to ensure code generation as `uv` is used in one of the `post_generation` commands `make fmt`. This ensures that generation fails early on in environments which do not have uv rather then failing post generation. ## What changed ### Internal changes Now the codegen checks if `uv` exists before starting code generation ## How is this tested? N/A NO_CHANGELOG=true
1 parent 9aa5f64 commit 815b17e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.codegen.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"databricks/sdk/version.py": "__version__ = \"$VERSION\""
66
},
77
"toolchain": {
8-
"required": ["python3.12"],
8+
"required": ["python3.12", "uv"],
99
"pre_setup": [
1010
"python3.12 -m venv .databricks"
1111
],

0 commit comments

Comments
 (0)