Skip to content

Commit 4d0d88b

Browse files
committed
feat: add support for uv pip compile
1 parent 71b413b commit 4d0d88b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/github.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,10 +505,10 @@ class Github {
505505
pythonPackages = await this.allDescendantPackages(pythonPackage);
506506
}
507507
console.log('Packages to bump', pythonPackages);
508-
// Run pip-compile-multi
508+
// Upgrade pacakge
509509
for (const lib of pythonPackages) {
510510
try {
511-
await runShellCommand({ command: `pip-compile-multi --use-cache -P ${lib}`, ...shellOptions });
511+
await runShellCommand({ command: `./scripts/uv-pip-compile.sh -P ${lib}`, ...shellOptions });
512512
} catch (error) {
513513
console.error(`Error bumping "${lib}":`, error);
514514
}

0 commit comments

Comments
 (0)