Skip to content

Commit bf9f335

Browse files
Only install jupyterlab_widgets if py3.6 or above
For jupyterlab_widgets 1.0.0, only Python 3.6 and above are supported, so restrict it as part of the extra_requires. Fixes #3058. jupyterlab_widgets 1.0.0 documentation: https://pypi.org/project/jupyterlab-widgets/1.0.0/
1 parent a4bd5df commit bf9f335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
extras_require = setuptools_args['extras_require'] = {
126126
':python_version<"3.3"' : ['ipython>=4.0.0,<6.0.0'],
127127
':python_version>="3.3"': ['ipython>=4.0.0'],
128-
':python_version>="3.5"': ['jupyterlab_widgets>=1.0.0'],
128+
':python_version>="3.6"': ['jupyterlab_widgets>=1.0.0'],
129129
'test:python_version=="2.7"': ['mock'],
130130
'test': ['pytest>=3.6.0', 'pytest-cov'],
131131
}

0 commit comments

Comments
 (0)