Skip to content

Commit 30d55a3

Browse files
committed
update binder
1 parent 433447c commit 30d55a3

File tree

5 files changed

+4777
-4828
lines changed

5 files changed

+4777
-4828
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
dist/
33
jupyterlab_latex.egg-info/
44
jupyterlab_latex/__pycache__/
5+
jupyterlab_latex/labextension/
56
lib/
6-
test/build/*
77
node_modules/
88
npm-debug.log
9+
test/build/*

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# JupyterLab LaTeX
22

3-
![Github Actions Status](https://github.com/jupyterlab/jupyterlab-latex/actions/workflows/build.yml/badge.svg)[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyterlab/jupyterlab-latex.git/master?urlpath=lab%2Ftree%2Fsample.tex)
3+
| build | stable | latest |
4+
| :---------------: | :------------------------------: | :------------------------------: |
5+
| [![ci-badge]][ci] | [![binder-badge]][binder-stable] | [![binder-badge]][binder-latest] |
6+
7+
[ci-badge]: https://github.com/jupyterlab/jupyterlab-latex/actions/workflows/build.yml/badge.svg
8+
[ci]: https://github.com/jupyterlab/jupyterlab-latex/actions/workflows/build.yml?query=branch%3Amaster
9+
[binder-badge]: https://mybinder.org/badge_logo.svg
10+
[binder-stable]: https://mybinder.org/v2/gh/jupyterlab/jupyterlab-latex.git/3.0.0?urlpath=lab%2Ftree%2Fsample.tex
11+
[binder-latest]: https://mybinder.org/v2/gh/jupyterlab/jupyterlab-latex.git/master?urlpath=lab%2Ftree%2Fsample.tex
412

513
An extension for JupyterLab which allows for live-editing of LaTeX documents.
614

@@ -18,7 +26,7 @@ For more advanced usage documentation, see [here](docs/advanced.md).
1826
## Requirements
1927

2028
- JupyterLab >= 3.0
21-
- older versions are supported in previous releases available on PyPi and npm, check [releases](https://github.com/jupyterlab/jupyterlab-latex/releases)
29+
- older versions are supported in previous releases available on PyPI and npm, check [releases](https://github.com/jupyterlab/jupyterlab-latex/releases)
2230
- Python >= 3.6
2331
- 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.
2432
- An application that can process `.bib` files for producing bibliographies. As with the LaTeX command, this must be available in the same environment as the notebook server.

binder/postBuild

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env bash
2+
set -eux
3+
4+
jlpm --ignore-optional
5+
jlpm build
6+
python -m pip install -e . --no-deps --ignore-installed --no-build-isolation
7+
jupyter labextension develop --overwrite .
8+
9+
jupyter labextension list

binder/requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
jupyterlab==3.0.16
2-
jupyterlab_latex==3.1.0
1+
jupyter_packaging ~=0.10,<2
2+
jupyterlab ~=3.0
3+
setuptools
4+
nbgitpuller

0 commit comments

Comments
 (0)