Skip to content

Commit

Permalink
⬆️🛡️ Upgrade dependencies and requirements to jupyterlab 3.1 (#18)
Browse files Browse the repository at this point in the history
* ⬆️ Upgraded dependencies and requirements to jupyterlab 3.1

* ⬆️ Updated typedoc and lumino
  • Loading branch information
s-weigand authored Jan 23, 2022
1 parent 418ae27 commit acaf24a
Show file tree
Hide file tree
Showing 4 changed files with 2,960 additions and 996 deletions.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,29 +38,29 @@
"clean:labextension": "rimraf jupyterlab_autosave_on_focus_change/labextension",
"clean:docs": "rimraf docs",
"clean:all": "run-s clean:lib clean:labextension clean:docs",
"docs": "typedoc --out docs --theme minimal src",
"docs": "typedoc --out docs --entryPointStrategy expand src",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch .",
"watch:docs": "typedoc --out docs --theme minimal src --watch",
"watch:docs": "typedoc --out docs src --watch",
"audit-fix": "yarn-audit-fix"
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/docmanager": "^3.0.9",
"@jupyterlab/fileeditor": "^3.0.9",
"@jupyterlab/mainmenu": "^3.0.7",
"@jupyterlab/notebook": "^3.0.9",
"@jupyterlab/settingregistry": "^3.0.5",
"@jupyterlab/application": "^3.1.0",
"@jupyterlab/docmanager": "^3.1.0",
"@jupyterlab/fileeditor": "^3.1.0",
"@jupyterlab/mainmenu": "^3.1.0",
"@jupyterlab/notebook": "^3.1.0",
"@jupyterlab/settingregistry": "^3.1.0",
"@lumino/algorithm": "^1.6.0",
"@lumino/widgets": "^1.22.0",
"@lumino/widgets": "^1.19.0",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@jupyterlab/builder": "^3.1.0",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
Expand All @@ -70,7 +70,7 @@
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typedoc": "^0.20.36",
"typedoc": "^0.22.11",
"typescript": "~4.1.3",
"yarn-audit-fix": "^9.0.8"
},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["jupyter_packaging~=0.10,<2", "jupyterlab~=3.0"]
requires = ["jupyter_packaging~=0.10,<2", "jupyterlab~=3.1"]
build-backend = "jupyter_packaging.build_api"

[tool.jupyter-packaging.options]
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
cmdclass=cmdclass,
data_files=get_data_files(data_files_spec),
packages=setuptools.find_packages(),
install_requires=["jupyterlab~=3.0", "jupyter_packaging~=0.9,<2"],
install_requires=["jupyterlab~=3.1", "jupyter_packaging~=0.9,<2"],
zip_safe=False,
include_package_data=True,
python_requires=">=3.6",
Expand Down Expand Up @@ -75,7 +75,12 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Framework :: Jupyter :: JupyterLab :: 3",
"Framework :: Jupyter :: JupyterLab :: Extensions",
"Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt",
],
)

Expand Down
Loading

0 comments on commit acaf24a

Please sign in to comment.