File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ Unreleased (aka. GitHub master)
21
21
This is where each new PR to the project should add a summary of its changes,
22
22
which makes it much easier to fill in each release's changelog :)
23
23
24
+ - Added CONTRIBUTING.md
25
+ [ #1224 ] ( https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1224 )
26
+ [ @consideratio ] ( https://github.com/consideratio )
24
27
25
28
0.4.0
26
29
-----
@@ -47,9 +50,6 @@ Repo-level stuff:
47
50
[ #1200 ] ( https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1200 ) ,
48
51
[ #1201 ] ( https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1201 )
49
52
[ @jcb91 ] ( https://github.com/jcb91 )
50
- - Added CONTRIBUTION.md
51
- [ #1224 ] ( https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1224 )
52
- [ @consideratio ] ( https://github.com/consideratio )
53
53
54
54
New features and bugfixes:
55
55
Original file line number Diff line number Diff line change 1
1
# Contributing to jupyter notebook nbextensions
2
2
3
- We are super happy that you intend to contribute to the nbextensions! You can discuss improvements in issues and improvement them in pull requests.
3
+ We are super happy that you intend to contribute to the nbextensions! You can discuss improvements in issues and implement them in pull requests.
4
4
5
5
## Create an issue
6
6
@@ -22,7 +22,9 @@ cd jupyter_contrib_nbextensions
22
22
``` shell
23
23
# run from the main directory, where setup.py is
24
24
pip install --editable .
25
- jupyter-contrib-nbextension install --symlink --sys-prefix
25
+
26
+ # on windows, remove the --symlink flag and run the command in between changes
27
+ jupyter-contrib-nbextension install --sys-prefix --symlink
26
28
```
27
29
28
30
## Create an extension
Original file line number Diff line number Diff line change 1
1
# explicit includes
2
2
include COPYING.rst
3
3
include README.md
4
+ include CONTRIBUTING.md
4
5
include CHANGELOG.md
5
6
include tox.ini
6
7
include .bumpversion.cfg
You can’t perform that action at this time.
0 commit comments