From 338beaff29228fd1b1fd177a6bc270f37d53d69c Mon Sep 17 00:00:00 2001 From: Vasu Bhog Date: Sat, 31 Oct 2020 11:01:05 -0500 Subject: [PATCH] Update powershell kernel version to 0.1.4 (#13167) * Update powershell kernel version to 0.1.4 --- extensions/notebook/src/jupyter/jupyterServerInstallation.ts | 2 +- extensions/notebook/src/test/python/jupyterInstallation.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);