Skip to content

Commit

Permalink
Fix check_files.py tool if tooo many providers released and switch to…
Browse files Browse the repository at this point in the history
… UV (#45165)
  • Loading branch information
jscheffl authored Dec 22, 2024
1 parent d7b6209 commit ef24504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/check_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def providers(ctx, path: str):
files = os.listdir(os.path.join(path, "providers"))
pips = [f"{name}=={version}" for name, version in get_packages()]
missing_files = check_providers(files)
create_docker(PROVIDERS_DOCKER.format("\n".join(f"RUN pip install '{p}'" for p in pips)))
create_docker(PROVIDERS_DOCKER.format("RUN uv pip install --system " + " ".join(f"'{p}'" for p in pips)))
if missing_files:
warn_of_missing_files(missing_files)

Expand Down

0 comments on commit ef24504

Please sign in to comment.