Skip to content

Commit

Permalink
Merge pull request #79 from timkpaine/tkp/hf2
Browse files Browse the repository at this point in the history
Hotfix for legacy notebook
  • Loading branch information
timkpaine committed May 6, 2022
2 parents a13bde4 + b1d6649 commit 6295315
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ipydagred3/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.4"
__version__ = "0.3.5"
17 changes: 17 additions & 0 deletions ipydagred3/nbextension/static/extension.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// Entry point for the notebook bundle containing custom model definitions.
//
define(function() {
"use strict";

window['requirejs'].config({
map: {
'*': {
'ipydagred3': 'nbextensions/ipydagred3/index',
},
}
});
// Export the required load_ipython_extension function
return {
load_ipython_extension : function() {}
};
});
4 changes: 2 additions & 2 deletions js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipydagred3",
"version": "0.3.4",
"version": "0.3.5",
"description": "A Custom Jupyter Widget Library",
"keywords": [
"jupyter",
Expand Down Expand Up @@ -35,7 +35,7 @@
"clean": "npm-run-all clean:*",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf ../ipydagred3/labextension",
"clean:nbextension": "rimraf ../ipydagred3/nbextension/static/index.js",
"clean:nbextension": "rimraf ../ipydagred3/nbextension/static/index*.js",
"fix": "yarn lint --fix",
"lint": "eslint -c .eslintrc.js --ext .js src/ tests/",
"prepack": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.4
current_version = 0.3.5
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

setup(
name=name,
version="0.3.4",
version="0.3.5",
description="ipywidgets wrapper around dagre-d3",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 6295315

Please sign in to comment.