As noticed in #7577, it seems the upgrade script currently does not bump the lower bound for the jupyterlab dependency.
This may be an issue with the pre-releases only:
|
function getVersionRange(version: IVersion): string { |
|
const baseVersion = `${version.major}.${version.minor}.${version.patch}${ |
|
version.preRelease ?? '' |
|
}`; |
|
return `>=${baseVersion},<${version.major}.${version.minor + 1}`; |
|
} |