Skip to content

Commit

Permalink
Merge pull request #2995 from martinRenou/remove_jlab_dependency
Browse files Browse the repository at this point in the history
Remove JupyterLab dependency in jupyterlab_widgets
  • Loading branch information
jasongrout authored Oct 24, 2020
2 parents 09ebda3 + 6008586 commit 5bb6573
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions jupyterlab_widgets/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
HERE = os.path.abspath(os.path.dirname(__file__))

# The name of the project
name="jupyterlab_widgets"
name = "jupyterlab_widgets"

# Ensure a valid python version
ensure_python(">=3.6")
Expand Down Expand Up @@ -40,7 +40,8 @@
("share/jupyter/lab/schemas/%s" % labext_name, os.path.join(lab_path, 'schemas', labext_name), "*.*"),
]

cmdclass = create_cmdclass("jsdeps",
cmdclass = create_cmdclass(
"jsdeps",
package_data_spec=package_data_spec,
data_files_spec=data_files_spec
)
Expand All @@ -66,11 +67,9 @@
description="A JupyterLab extension.",
long_description= long_description,
long_description_content_type="text/markdown",
cmdclass= cmdclass,
cmdclass=cmdclass,
packages=setuptools.find_packages(),
install_requires=[
"jupyterlab~=3.0.0rc4",
],
install_requires=[],
zip_safe=False,
include_package_data=True,
python_requires=">=3.6",
Expand Down

0 comments on commit 5bb6573

Please sign in to comment.