Skip to content

Commit 9143848

Browse files
committed
v0.4.0
1 parent 1df3a5e commit 9143848

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
name = 'sidecar'
2323

2424
# Ensure a valid python version
25-
ensure_python('>=3.3')
25+
ensure_python('>=3.5')
2626

2727
# Get our version
2828
version = get_version(pjoin(name, '_version.py'))
@@ -80,6 +80,7 @@
8080
include_package_data = True,
8181
install_requires = [
8282
'ipywidgets>=7.5.0',
83+
'jupyterlab>=2.0.0,<3'
8384
],
8485
extras_require = {
8586
'test': [

sidecar/_version.py

Lines changed: 1 addition & 1 deletion
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, 3, 0)
7+
version_info = (0, 4, 0)
88
__version__ = ".".join(map(str, version_info))
99

1010
# The version of the attribute spec that this package

0 commit comments

Comments
 (0)