diff --git a/extensions/notebook/src/jupyter/jupyterServerInstallation.ts b/extensions/notebook/src/jupyter/jupyterServerInstallation.ts index d5e07784e3..2d35bdec3e 100644 --- a/extensions/notebook/src/jupyter/jupyterServerInstallation.ts +++ b/extensions/notebook/src/jupyter/jupyterServerInstallation.ts @@ -108,7 +108,7 @@ export class JupyterServerInstallation implements IJupyterServerInstallation { let powershellPkg = { name: 'powershell-kernel', - version: '0.1.3' + version: '0.1.4' }; this._requiredKernelPackages.set(constants.powershellDisplayName, [jupyterPkg, powershellPkg]); diff --git a/extensions/notebook/src/test/python/jupyterInstallation.test.ts b/extensions/notebook/src/test/python/jupyterInstallation.test.ts index 9cb7056961..11784692f7 100644 --- a/extensions/notebook/src/test/python/jupyterInstallation.test.ts +++ b/extensions/notebook/src/test/python/jupyterInstallation.test.ts @@ -230,7 +230,7 @@ describe('Jupyter Server Installation', function () { version: '1.0.0' }, { name: 'powershell-kernel', - version: '0.1.3' + version: '0.1.4' }]; let packages = installation.getRequiredPackagesForKernel(powershellDisplayName); should(packages).be.deepEqual(expectedPackages);