Skip to content

Commit

Permalink
Remove static directory for nbextension
Browse files Browse the repository at this point in the history
  • Loading branch information
jonmmease committed Apr 29, 2020
1 parent d3832d8 commit 48eaf2c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
recursive-include jupyter_dash/nbextension *.json
recursive-include jupyter_dash/nbextension/static *.js
recursive-include jupyter_dash/nbextension *.js
2 changes: 1 addition & 1 deletion jupyter_dash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def _jupyter_nbextension_paths():
return [
{
"section": "notebook",
"src": "nbextension/static",
"src": "nbextension",
"dest": "jupyter_dash",
"require": "jupyter_dash/main",
}
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
data_files=[
# like `jupyter nbextension install --sys-prefix`
("share/jupyter/nbextensions/jupyter_dash", [
"jupyter_dash/nbextension/static/main.js",
"jupyter_dash/nbextension/main.js",
]),
# like `jupyter nbextension enable --sys-prefix`
("etc/jupyter/nbconfig/notebook.d", [
Expand Down

0 comments on commit 48eaf2c

Please sign in to comment.