Browse Source

Update to JLab 2.0 final

Jeremy Tuloup 5 years ago
parent
commit
5a52e26ebd
3 changed files with 16 additions and 22 deletions
  1. 2 6
      README.md
  2. 1 3
      azure-pipelines.yml
  3. 13 13
      package.json

+ 2 - 6
README.md

@@ -10,7 +10,7 @@ A JupyterLab debugger UI extension.
 
 ## Prerequisites
 
-- JupyterLab 1.2+
+- JupyterLab 2.0+
 - xeus-python 0.6.7+
 - notebook 6+
 
@@ -30,13 +30,9 @@ conda install -c conda-forge xeus-python=0.6.7 notebook>=6 ptvsd
 
 ## Development
 
-The current master branch targets the JupyterLab 2.0 beta release.
-
 ```bash
 # Create a new conda environment
-conda create -n jupyterlab-debugger -c conda-forge \
-                                    -c conda-forge/label/prerelease-jupyterlab \
-                                    nodejs xeus-python=0.6 ptvsd jupyterlab=2
+conda create -n jupyterlab-debugger -c conda-forge nodejs xeus-python=0.6 ptvsd jupyterlab=2
 
 # Activate the conda environment
 conda activate jupyterlab-debugger

+ 1 - 3
azure-pipelines.yml

@@ -16,9 +16,7 @@ steps:
 
 - bash: |
     source activate jupyterlab-debugger
-    conda install --yes --quiet -c conda-forge \
-                                -c conda-forge/label/prerelease-jupyterlab \
-                                nodejs jupyterlab=2 xeus-python=0.6.7 ptvsd python=$PYTHON_VERSION
+    conda install --yes --quiet -c conda-forge nodejs jupyterlab=2 xeus-python=0.6.7 ptvsd python=$PYTHON_VERSION
   displayName: Install dependencies
 
 - bash: |

+ 13 - 13
package.json

@@ -48,18 +48,18 @@
     "watch": "tsc -b --watch"
   },
   "dependencies": {
-    "@jupyterlab/application": "^2.0.0-beta.2",
-    "@jupyterlab/apputils": "^2.0.0-beta.2",
-    "@jupyterlab/codeeditor": "^2.0.0-beta.2",
-    "@jupyterlab/console": "^2.0.0-beta.2",
-    "@jupyterlab/coreutils": "^4.0.0-beta.2",
-    "@jupyterlab/docregistry": "^2.0.0-beta.2",
-    "@jupyterlab/fileeditor": "^2.0.0-beta.2",
-    "@jupyterlab/launcher": "^2.0.0-beta.2",
-    "@jupyterlab/observables": "^3.0.0-beta.2",
-    "@jupyterlab/notebook": "^2.0.0-beta.2",
-    "@jupyterlab/services": "^5.0.0-beta.2",
-    "@jupyterlab/ui-components": "^2.0.0-beta.2",
+    "@jupyterlab/application": "^2.0.0",
+    "@jupyterlab/apputils": "^2.0.0",
+    "@jupyterlab/codeeditor": "^2.0.0",
+    "@jupyterlab/console": "^2.0.0",
+    "@jupyterlab/coreutils": "^4.0.0",
+    "@jupyterlab/docregistry": "^2.0.0",
+    "@jupyterlab/fileeditor": "^2.0.0",
+    "@jupyterlab/launcher": "^2.0.0",
+    "@jupyterlab/observables": "^3.0.0",
+    "@jupyterlab/notebook": "^2.0.0",
+    "@jupyterlab/services": "^5.0.0",
+    "@jupyterlab/ui-components": "^2.0.0",
     "@lumino/algorithm": "^1.2.0",
     "@lumino/coreutils": "^1.3.1",
     "@lumino/disposable": "^1.2.0",
@@ -70,7 +70,7 @@
   "devDependencies": {
     "@babel/core": "^7.5.5",
     "@babel/preset-env": "^7.7.6",
-    "@jupyterlab/testutils": "^2.0.0-beta.2",
+    "@jupyterlab/testutils": "^2.0.0",
     "@types/chai": "^4.2.7",
     "@types/codemirror": "0.0.76",
     "@types/jest": "^24.0.17",