We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1df3a5e commit 9143848Copy full SHA for 9143848
setup.py
@@ -22,7 +22,7 @@
22
name = 'sidecar'
23
24
# Ensure a valid python version
25
-ensure_python('>=3.3')
+ensure_python('>=3.5')
26
27
# Get our version
28
version = get_version(pjoin(name, '_version.py'))
@@ -80,6 +80,7 @@
80
include_package_data = True,
81
install_requires = [
82
'ipywidgets>=7.5.0',
83
+ 'jupyterlab>=2.0.0,<3'
84
],
85
extras_require = {
86
'test': [
sidecar/_version.py
@@ -4,7 +4,7 @@
4
# Copyright (c) Project Jupyter.
5
# Distributed under the terms of the Modified BSD License.
6
7
-version_info = (0, 3, 0)
+version_info = (0, 4, 0)
8
__version__ = ".".join(map(str, version_info))
9
10
# The version of the attribute spec that this package
0 commit comments