-
Notifications
You must be signed in to change notification settings - Fork 392
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Version 1.16.0-dev * Update the documentation * Fix CI badge Co-authored-by: Mahendra Paipuri <[email protected]>
- Loading branch information
1 parent
40e5869
commit 710be91
Showing
11 changed files
with
40 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
```{include} ../CHANGELOG.md | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,31 +44,32 @@ jupyter labextension enable jupyterlab-jupytext | |
jupyter labextension disable jupyterlab-jupytext | ||
``` | ||
|
||
From Jupytext 1.9.0 on, the version of the extension is compatible with JupyterLab 3.x only. If you wish to use Jupytext with JupyterLab 2.x or 1.x, please | ||
From Jupytext 1.16.0 on, the version of the extension is compatible with JupyterLab 4.x only. If you wish to use Jupytext with JupyterLab 3.x or older, please | ||
- install the `jupytext` package using `pip` or `conda` | ||
- and then, install the last version of the `jupyterlab-jupytext` extension that is compatible with your version of JupyterLab, i.e. | ||
``` | ||
jupyter labextension install [email protected] # for JupyterLab 3.x | ||
jupyter labextension install [email protected] # for JupyterLab 2.x | ||
jupyter labextension install [email protected] # for JupyterLab 1.x | ||
``` | ||
|
||
## Jupytext menu in Jupyter Notebook | ||
|
||
*Note*: as of this writing (version 1.15.1) this section **applies only to | ||
notebook classic**, i.e. Jupyter Notebook 6.x and below. See [PR | ||
#1095](https://github.com/mwouts/jupytext/issues/1095) where we discuss how to | ||
add a Jupytext menu to Jupyter Lab and Notebook 7.x. | ||
In Jupyter Notebook 7 you can use the same pairing commands as in JupyterLab (see above). | ||
|
||
Jupytext includes an extensions for Jupyter Notebook that adds a Jupytext section in the File menu. | ||
In Jupyter Notebook **classic**, i.e. Jupyter Notebook 6.x and below, Jupytext used to provided an extension that added a Jupytext section in the File menu. | ||
|
||
![](images/jupytext_menu.png) | ||
|
||
Here again, the extension should be automatically installed. If need be, you can install and activate it manually with | ||
That extension is available only for `jupytext<1.16`, and is automatically installed. If need be, you can install and activate it manually with | ||
``` | ||
jupyter nbextension install --py jupytext [--user] | ||
jupyter nbextension enable --py jupytext [--user] | ||
``` | ||
|
||
See also [Issue #1095](https://github.com/mwouts/jupytext/issues/1095) where we discuss how to | ||
add a Jupytext menu to Jupyter Lab and Notebook 7.x. | ||
|
||
## Jupytext's command line interface | ||
|
||
Jupytext provides a `jupytext` command in the terminal that you can use to pair, synchronize or convert notebooks in different formats. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
"""Jupytext's version number""" | ||
|
||
__version__ = "1.15.2" | ||
__version__ = "1.16.0-dev" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters