diff --git a/panel/package-lock.json b/panel/package-lock.json index 8c2724bf6d..c6cfec4cc0 100644 --- a/panel/package-lock.json +++ b/panel/package-lock.json @@ -1,6 +1,6 @@ { "name": "@holoviz/panel", - "version": "0.10.0-a42", + "version": "0.10.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/panel/package.json b/panel/package.json index e6f140e948..ec9f9108cc 100644 --- a/panel/package.json +++ b/panel/package.json @@ -1,6 +1,6 @@ { "name": "@holoviz/panel", - "version": "0.10.0-a42", + "version": "0.10.0", "description": "A high level dashboarding library for python visualization libraries.", "license": "BSD-3-Clause", "repository": { diff --git a/setup.py b/setup.py index 9c251aec71..2742ab4c65 100644 --- a/setup.py +++ b/setup.py @@ -92,7 +92,7 @@ def run(self): ########## dependencies ########## install_requires = [ - 'bokeh >=2.2', + 'bokeh >=2.2.2', 'param >=1.9.3', 'pyviz_comms >=0.7.4', 'markdown', @@ -215,7 +215,8 @@ def run(self): entry_points={ 'console_scripts': [ 'panel = panel.command:main' - ]}, + ] + }, install_requires=install_requires, extras_require=extras_require, tests_require=extras_require['tests']