Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump all outdated dependencies #188

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@ jobs:
yarn-

- name: Install dependencies
run: python -m pip install -U jupyter_packaging~=0.10.4 jupyterlab~=3.0.16 pip wheel
run: python -m pip install -U jupyter_packaging~=0.11.1 jupyterlab~=3.2.0 pip wheel
- name: Install the extension
run: |
set -eux
python -m pip install .
jupyter server extension enable jupyterlab_latex
- name: Integration test
run: |
jupyter serverextension list 2>&1 | grep -ie "jupyterlab_latex.*OK"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ For more advanced usage documentation, see [here](docs/advanced.md).

## Requirements

- JupyterLab >= 3.0
- JupyterLab >= 3.2
- older versions are supported in previous releases available on PyPI and npm, check [releases](https://github.com/jupyterlab/jupyterlab-latex/releases)
- Python >= 3.6
- An application that can compile `.tex` files to PDF (e.g., `pdflatex`, `xelatex`; use `pdflatex.exe` on Windows with MiKTeX). This application must be available as a command in the same environment as the notebook server.
Expand Down
4 changes: 2 additions & 2 deletions docs/advanced.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ pip install -e .
Link your development version of the extension with JupyterLab

```bash
jupyter labextension develop . --overwrite{% if cookiecutter.has_server_extension.lower().startswith('y') %}
jupyter labextension develop . --overwrite
```

Server extension must be manually installed in develop mode

```bash
jupyter server extension enable {{ cookiecutter.python_name }}{% endif %}
jupyter server extension enable jupyterlab_latex
```

Rebuild extension Typescript source after making changes
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for `jupyterlab_latex`

- **3.1.1**:
fcollonval marked this conversation as resolved.
Show resolved Hide resolved

- Bump JS dependencies
- Minimum supported JupyterLab is 3.2.0

- **3.1.0**:

- Switch to prebuilt (federated) extension model
Expand Down
64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jupyterlab/latex",
"version": "3.1.0",
"version": "3.2.0",
"description": "JupyterLab extension for running LaTeX",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -56,51 +56,51 @@
]
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/codeeditor": "^3.0.0",
"@jupyterlab/application": "^3.2.0",
"@jupyterlab/apputils": "^3.2.0",
"@jupyterlab/codeeditor": "^3.2.0",
"@jupyterlab/coreutils": "^5.0.0",
"@jupyterlab/docmanager": "^3.0.0",
"@jupyterlab/docregistry": "^3.0.0",
"@jupyterlab/filebrowser": "^3.0.0",
"@jupyterlab/fileeditor": "^3.0.0",
"@jupyterlab/launcher": "^3.0.0",
"@jupyterlab/mainmenu": "^3.0.0",
"@jupyterlab/docmanager": "^3.2.0",
"@jupyterlab/docregistry": "^3.2.0",
"@jupyterlab/filebrowser": "^3.2.0",
"@jupyterlab/fileeditor": "^3.2.0",
"@jupyterlab/launcher": "^3.2.0",
"@jupyterlab/mainmenu": "^3.2.0",
"@jupyterlab/services": "^6.0.0",
"@jupyterlab/settingregistry": "^3.0.0",
"@jupyterlab/statedb": "^3.0.0",
"@jupyterlab/settingregistry": "^3.2.0",
"@jupyterlab/statedb": "^3.2.8",
"@jupyterlab/ui-components": "^3.0.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/domutils": "^1.2.3",
"@lumino/messaging": "^1.4.3",
"@lumino/widgets": "^1.16.1",
"pdfjs-dist": "2.0.943",
"@lumino/coreutils": "^1.12.0",
"@lumino/disposable": "^1.10.1",
"@lumino/domutils": "^1.8.1",
"@lumino/messaging": "^1.10.1",
"@lumino/widgets": "^1.31.1",
"pdfjs-dist": "2.12.313",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0-rc.13",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"@jupyterlab/builder": "^3.2.8",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.2",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tslint": "^5.18.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~4.1.3"
"typescript": "~4.5.5"
},
"resolutions": {
"@types/react": "~16.4.13"
"@types/react": "~17.0.38"
},
"jupyterlab": {
"extension": "lib/index.js",
Expand Down
Loading