Skip to content

Commit

Permalink
SOF-7451: fix current platform jupyterlab version
Browse files Browse the repository at this point in the history
  • Loading branch information
pranabdas committed Nov 3, 2024
1 parent 3c34642 commit c0e26de
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"name": "jupyterLab",
"shortName": "jl",
"summary": "Jupyter Lab",
"version": "0.33.12"
"version": "3.0.3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"version": {
"enum": [
"0.33.12",
"3.0.3",
"4.3.0"
],
"description": "Application version. e.g. 5.3.5",
Expand Down
2 changes: 1 addition & 1 deletion dist/js/schemas.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22874,7 +22874,7 @@ export interface JupyterLabApplicationSchema {
/**
* Application version. e.g. 5.3.5
*/
version?: "0.33.12" | "4.3.0";
version?: "3.0.3" | "4.3.0";
exec?: "jupyter";
/**
* The short name of the application. e.g. qe
Expand Down
2 changes: 1 addition & 1 deletion example/software_directory/scripting/jupyter-lab.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"name": "jupyterLab",
"shortName": "jl",
"summary": "Jupyter Lab",
"version": "0.33.12"
"version": "3.0.3"
}
2 changes: 1 addition & 1 deletion schema/software_directory/scripting/jupyter-lab.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"version": {
"enum": [
"0.33.12",
"3.0.3",
"4.3.0"
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/py/mat3ra/esse/data/examples.py

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/py/mat3ra/esse/data/schemas.py

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Summary(Enum):


class Version(Enum):
field_0_33_12 = "0.33.12"
field_3_0_3 = "3.0.3"
field_4_3_0 = "4.3.0"


Expand Down

0 comments on commit c0e26de

Please sign in to comment.