Skip to content

Commit

Permalink
Update dependencies to lab 4 released and notebook 7b.4
Browse files Browse the repository at this point in the history
  • Loading branch information
brichet committed Jun 16, 2023
1 parent e9b50f3 commit e7ac735
Show file tree
Hide file tree
Showing 4 changed files with 429 additions and 342 deletions.
54 changes: 32 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,38 +44,49 @@
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter-notebook/application": "^7.0.0-alpha.17",
"@jupyter-notebook/tree": "^7.0.0-alpha.17",
"@jupyterlab/application": "^4.0.0-alpha.22",
"@jupyterlab/apputils": "^4.0.0-alpha.22",
"@jupyterlab/cells": "^4.0.0-alpha.22",
"@jupyterlab/coreutils": "^6.0.0-alpha.22",
"@jupyterlab/launcher": "^4.0.0-alpha.22",
"@jupyterlab/notebook": "^4.0.0-alpha.22",
"@jupyterlab/services": "^7.0.0-alpha.22",
"@jupyterlab/settingregistry": "^4.0.0-alpha.22"
"@jupyter-notebook/application": "^7.0.0-beta.4",
"@jupyter-notebook/tree": "^7.0.0-beta.4",
"@jupyter/ydoc": "^0.3.4",
"@jupyterlab/application": "^4.0.0",
"@jupyterlab/apputils": "^4.0.0",
"@jupyterlab/cells": "^4.0.0",
"@jupyterlab/coreutils": "^6.0.0",
"@jupyterlab/docregistry": "^4.0.0",
"@jupyterlab/launcher": "^4.0.0",
"@jupyterlab/mainmenu": "^4.0.0",
"@jupyterlab/nbformat": "^4.0.0",
"@jupyterlab/notebook": "^4.0.0",
"@jupyterlab/observables": "^5.0.0",
"@jupyterlab/services": "^7.0.0",
"@jupyterlab/settingregistry": "^4.0.0",
"@lumino/coreutils": "^2.0.0",
"@lumino/disposable": "^2.0.0",
"@lumino/messaging": "^2.0.0",
"@lumino/signaling": "^2.0.0",
"@lumino/widgets": "^2.0.0"
},
"devDependencies": {
"@jupyterlab/builder": "^4.0.0-alpha.22",
"@jupyterlab/galata": "^5.0.0-alpha.22",
"@playwright/test": "^1.30.0",
"@jupyterlab/builder": "^4.0.0",
"@jupyterlab/galata": "^5.0.0",
"@playwright/test": "^1.32.2",
"@types/codemirror": "^5.60.5",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"bower": "*",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"mkdirp": "^1.0.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"react": "^18.2.0",
"rimraf": "^3.0.2",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "~24.0.0",
"stylelint-prettier": "^2.0.0",
"typescript": "~4.9.3"
"typescript": "~5.0.4"
},
"sideEffects": [
"style/*.css",
Expand All @@ -97,7 +108,6 @@
}
},
"extension": true,
"outputDir": "nbgrader/labextension",
"schemaDir": "schema"
"outputDir": "nbgrader/labextension"
}
}
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
requires = [
"hatchling>=1.10.0",
"jupyterlab>=4.0.0a37",
"jupyterlab>=4",
]
build-backend = "hatchling.build"

Expand Down Expand Up @@ -38,11 +38,11 @@ dependencies = [
"jsonschema>=3",
"jupyter_client<9",
"jupyter_server>=2",
"jupyterlab>=4.0.0a37",
"jupyterlab>=4",
"jupyterlab_server",
"nbclient>=0.6.1",
"nbconvert>=6",
"notebook>=7.0.0a17",
"notebook>=7.0.0b4",
"python-dateutil>=2.8",
"rapidfuzz>=1.8",
"requests>=2.26",
Expand Down Expand Up @@ -146,7 +146,7 @@ after-bump-version = [
"python tools/post-bump.py",
]
before-build-npm = [
"python -m pip install 'jupyterlab>=4.0.0a37'",
"python -m pip install 'jupyterlab>=4'",
"jlpm",
"jlpm build:prod",
]
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def _run_ts_test(args, notebook=False):
if notebook:
os.environ["NBGRADER_TEST_IS_NOTEBOOK"] = "1"

cmd = ['jlpm', f'test{":notebook" if notebook else ""}', '--retries=1'] + args
cmd = ['jlpm', f'test{":notebook" if notebook else ""}', '--retries=2'] + args
run(" ".join(cmd))


Expand Down
Loading

0 comments on commit e7ac735

Please sign in to comment.