Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 37740df

Browse files
committed
Version 0.2.0a6
1 parent 4492a6c commit 37740df

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

extensions/jupyterlab/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-dash",
3-
"version": "0.2.0-alpha.5",
3+
"version": "0.2.0-alpha.6",
44
"description": "A JupyterLab extensions for rendering Plotly Dash apps",
55
"keywords": [
66
"jupyter",

jupyter_dash/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ def _jupyter_nbextension_paths():
1111
"require": "jupyter_dash/main",
1212
}
1313
]
14+
15+
__version__ = "0.2.0a6"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from setuptools.command.sdist import sdist
99
from setuptools.command.build_py import build_py
1010
from setuptools.command.egg_info import egg_info
11+
from jupyter_dash import __version__
1112

1213
here = os.path.dirname(os.path.abspath(__file__))
1314
is_repo = os.path.exists(os.path.join(here, ".git"))
@@ -90,7 +91,7 @@ def run(self):
9091

9192
setup(
9293
name='jupyter-dash',
93-
version='0.2.0a5',
94+
version=__version__,
9495
description="Dash support for the Jupyter notebook interface",
9596
author='Plotly',
9697
packages=['jupyter_dash'],

0 commit comments

Comments
 (0)