Commit 561d04e
committed
scripts(fix[ci-smoke]): pass sphinx and typehints-gp wheel as separate install args
why: smoke_sphinx_autodoc_typehints_gp passed
f"sphinx {dist_dir}/sphinx_autodoc_typehints_gp-{version}-py3-none-any.whl"
as a single positional to _install_into_venv. That helper is
variadic (*requirements) and forwards each arg as its own token
to uv pip install, so the concatenated string became one
requirement with a literal space in the name — uv would reject it
as a syntactically invalid requirement. Every other smoke_* in this
module already uses the _target_wheel_path() helper; this one was
an oversight.
what:
- Replace the f-string with two positional arguments: "sphinx" and
_target_wheel_path(dist_dir, "sphinx-autodoc-typehints-gp").
- Matches the idiom used by the other smoke_* functions in the
same file.1 parent 8dc6ba7 commit 561d04e
1 file changed
+2
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
462 | 462 | | |
463 | 463 | | |
464 | 464 | | |
465 | | - | |
| 465 | + | |
| 466 | + | |
466 | 467 | | |
467 | 468 | | |
468 | 469 | | |
| |||
0 commit comments