Fix jupyter version number, #136544

This commit is contained in:
Rob Lourens 2021-11-05 14:50:10 -07:00
parent 29c5f2d394
commit 3df135c388

View file

@ -40,7 +40,7 @@ export class NotebookSerializer implements vscode.NotebookSerializer {
}
}
if (json.nbformat && json.nbformat < 5) {
if (json.nbformat && json.nbformat < 4) {
throw new Error('Only Jupyter notebooks version 4+ are supported');
}