Skip to content

Commit 74c6039

Browse files
committed
Release 0.5.2
- ipywidgets 8 compatibility - updated release metadata - drops Python 3.6 support, adds Python 3.11 support
1 parent 1064a78 commit 74c6039

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyter-widgets/jupyterlab-sidecar",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "A sidecar output widget for JupyterLab",
55
"keywords": [
66
"jupyter",

setup.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,16 @@
8787
'Programming Language :: Python :: 3.8',
8888
'Programming Language :: Python :: 3.9',
8989
'Programming Language :: Python :: 3.10',
90+
'Programming Language :: Python :: 3.11',
9091
'Framework :: Jupyter',
92+
'Framework :: Jupyter :: JupyterLab',
93+
'Framework :: Jupyter :: JupyterLab :: 3',
94+
'Framework :: Jupyter :: JupyterLab :: Extensions',
95+
'Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt',
9196
],
9297
include_package_data = True,
9398
install_requires = [
94-
'ipywidgets>=7.6.0',
99+
'ipywidgets>=7.6.0,<9',
95100
'jupyterlab>=3.0.0,<4'
96101
],
97102
extras_require = {

sidecar/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) Project Jupyter.
55
# Distributed under the terms of the Modified BSD License.
66

7-
version_info = (0, 5, 1)
7+
version_info = (0, 5, 2)
88
__version__ = ".".join(map(str, version_info))
99

1010
# The version of the attribute spec that this package

0 commit comments

Comments
 (0)