Skip to content

Commit

Permalink
Merge pull request #223 from ianhi/update
Browse files Browse the repository at this point in the history
A few more jlab3 things + version bump
  • Loading branch information
ianhi authored Jan 5, 2021
2 parents fbbf3f7 + 21c64d4 commit e697a11
Show file tree
Hide file tree
Showing 6 changed files with 14,969 additions and 414 deletions.
6 changes: 6 additions & 0 deletions ipycytoscape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@
from ._version import __version__, version_info

from .nbextension import _jupyter_nbextension_paths

npm_pkg_name = "jupyter-cytoscape"


def _jupyter_labextension_paths():
return [{"src": "labextension", "dest": npm_pkg_name}]
2 changes: 1 addition & 1 deletion ipycytoscape/_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
"""

module_name = "jupyter-cytoscape"
module_version = "^1.1.0"
module_version = "^1.2.0"
2 changes: 1 addition & 1 deletion ipycytoscape/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
#
# The full license is in the file LICENSE, distributed with this software.

version_info = (1, 1, 0)
version_info = (1, 2, 0)
__version__ = ".".join(map(str, version_info))
Loading

0 comments on commit e697a11

Please sign in to comment.