Skip to content

Commit

Permalink
Merge pull request #41 from gabrielmagno/feature/jupyterlab-4
Browse files Browse the repository at this point in the history
Makes it compatible with Jupyter Lab 4
  • Loading branch information
karosc authored Nov 9, 2023
2 parents ff2a38c + cb97a1c commit 99606cc
Show file tree
Hide file tree
Showing 5 changed files with 1,151 additions and 1,904 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/translation": "^3.0.0"
"@jupyterlab/application": "^3.0.0 || ^4.0.0",
"@jupyterlab/apputils": "^3.0.0 || ^4.0.0",
"@jupyterlab/translation": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@jupyterlab/builder": "^3.0.0 || ^4.0.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^7.5.0",
Expand All @@ -57,7 +57,7 @@
"npm-run-all": "^4.1.5",
"prettier": "^1.19.0",
"rimraf": "^3.0.2",
"typescript": "~4.1.3"
"typescript": "~5.0.2"
},
"sideEffects": [
"style/*.css",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["jupyter_packaging~=0.7.9", "jupyterlab>=3.0.0rc13,==3.*", "setuptools>=40.8.0", "wheel"]
requires = ["jupyter_packaging>=0.12.0", "jupyterlab>=3.0.0,<5", "setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
cmdclass= cmdclass,
packages=setuptools.find_packages(),
install_requires=[
"jupyterlab>=3.0.0rc13,==3.*",
"jupyterlab>=3.0.0",
],
zip_safe=False,
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"rootDir": "src",
"strict": true,
"strictNullChecks": false,
"target": "es2017",
"target": "ES2018",
"types": []
},
"include": ["src/*"]
Expand Down
Loading

0 comments on commit 99606cc

Please sign in to comment.