-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from tokk-nv/dev-jlab2-support
Support Jupyter Lab 2.x
- Loading branch information
Showing
56 changed files
with
17,897 additions
and
2,304 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,38 +1,2 @@ | ||
include LICENSE.txt | ||
include README.md | ||
|
||
include setupbase.py | ||
include pytest.ini | ||
include .coverage.rc | ||
|
||
include package.json | ||
include webpack.config.js | ||
include jupyter_clickable_image_widget/labextension/*.tgz | ||
|
||
# Documentation | ||
graft docs | ||
exclude docs/\#* | ||
prune docs/build | ||
prune docs/gh-pages | ||
prune docs/dist | ||
|
||
# Examples | ||
graft examples | ||
|
||
# Tests | ||
graft tests | ||
prune tests/build | ||
|
||
# Javascript files | ||
graft jupyter_clickable_image_widget/nbextension | ||
graft src | ||
prune **/node_modules | ||
prune coverage | ||
prune lib | ||
|
||
# Patterns to exclude from any directory | ||
global-exclude *~ | ||
global-exclude *.pyc | ||
global-exclude *.pyo | ||
global-exclude .git | ||
global-exclude .ipynb_checkpoints | ||
recursive-include jupyter_clickable_image_widget/static *.* | ||
include jupyter_clickable_image_widget.json |
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,22 @@ | ||
- To release a new version of jupyter_clickable_image_widget on PyPI: | ||
|
||
Update _version.py (set release version, remove 'dev') | ||
git add the _version.py file and git commit | ||
`python setup.py sdist upload` | ||
`python setup.py bdist_wheel upload` | ||
`git tag -a X.X.X -m 'comment'` | ||
Update _version.py (add 'dev' and increment minor) | ||
git add and git commit | ||
git push | ||
git push --tags | ||
|
||
- To release a new version of jupyter_clickable_image_widget on NPM: | ||
|
||
Update `js/package.json` with new npm package version | ||
|
||
``` | ||
# clean out the `dist` and `node_modules` directories | ||
git clean -fdx | ||
npm install | ||
npm publish | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.