We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b413b commit 4d0d88bCopy full SHA for 4d0d88b
src/github.js
@@ -505,10 +505,10 @@ class Github {
505
pythonPackages = await this.allDescendantPackages(pythonPackage);
506
}
507
console.log('Packages to bump', pythonPackages);
508
- // Run pip-compile-multi
+ // Upgrade pacakge
509
for (const lib of pythonPackages) {
510
try {
511
- await runShellCommand({ command: `pip-compile-multi --use-cache -P ${lib}`, ...shellOptions });
+ await runShellCommand({ command: `./scripts/uv-pip-compile.sh -P ${lib}`, ...shellOptions });
512
} catch (error) {
513
console.error(`Error bumping "${lib}":`, error);
514
0 commit comments