Skip to content

Commit c781ade

Browse files
committed
ci_scripts: check_versions.py: fix docs path
We were still using the old docs/source/packages path, rather than the docs/packages path in python-wheels. AI-Generated: Uses Claude Sonnet 5 Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
1 parent 6c9e10d commit c781ade

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ci_scripts/check_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def create_deprecation_pr(package: str, reason: str) -> Optional[str]:
166166
git_run("fetch", "origin")
167167
git_run("switch", "main")
168168

169-
yaml_file = Path(f"docs/source/packages/{package}.yaml")
169+
yaml_file = Path(f"docs/packages/{package}.yaml")
170170
if not yaml_file.exists():
171171
print(f" [!] YAML file for {package} does not exist")
172172
return None

0 commit comments

Comments
 (0)