Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Dec 20, 2024
1 parent 5bd57b9 commit 0aca16b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildutils/src/upgrade-lab-dependencies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function absoluteVersion(version: string): string {
async function updatePyprojectToml(version: IVersion): Promise<void> {
const filePath = path.resolve('pyproject.toml');
const pattern = /(jupyterlab>=)[\d.]+(?:a|b|rc\d+)?,<[\d.]+/g;
updateVersionInFile(filePath, pattern, version, true);
updateVersionInFile(filePath, pattern, version);
}

async function updatePreCommitConfig(version: IVersion): Promise<void> {
Expand Down

0 comments on commit 0aca16b

Please sign in to comment.