Skip to content

Commit

Permalink
New version of the JupyterLab extension
Browse files Browse the repository at this point in the history
  • Loading branch information
mwouts committed Jun 17, 2019
1 parent 9abe23b commit bfc6a37
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions packages/labextension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,22 @@ jlpm run build
```

Refresh the JupyterLab interface and see your changes in action.

# How to publish a new version of the extension

Bump the version in `package.json`.

Build the new version of `jupyterlab-jupytext-xxx.tgz` with

```bash
npm pack
```

and remove any previous version. That package will be included in the Jupytext Python package.

If you wish, you may also update the package on npm with

```bash
npm publish --access=public
```

Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'jupytext/nbextension/jupytext_menu.png',
'jupytext/nbextension/jupytext_menu_zoom.png',
'jupytext/nbextension/jupytext.yml']),
('share/jupyter/lab/extensions', ['packages/labextension/dist/jupyterlab-jupytext-0.1.0.tgz'])],
('share/jupyter/lab/extensions', ['packages/labextension/jupyterlab-jupytext-0.1.1.tgz'])],
entry_points={'console_scripts': ['jupytext = jupytext.cli:jupytext_cli']},
tests_require=['pytest'],
install_requires=['nbformat>=4.0.0', 'mock', 'pyyaml', 'testfixtures'],
Expand Down

0 comments on commit bfc6a37

Please sign in to comment.