From 4dd935dbcb5017b140480d928a74c7f5edb20fad Mon Sep 17 00:00:00 2001 From: Juergen Hasch Date: Sun, 26 Mar 2023 19:35:24 +0200 Subject: [PATCH] Remove dependency on jupyter_highlight_selected_word --- .bumpversion.cfg | 2 +- setup.py | 6 ++---- src/jupyter_contrib_nbextensions/__init__.py | 2 +- src/jupyter_contrib_nbextensions/install.py | 2 -- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 58e3f657b..0e7fbf35e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0 +current_version = 0.7.1 commit = True message = release {new_version} tag = False diff --git a/setup.py b/setup.py index 22b64577b..27e5e1866 100755 --- a/setup.py +++ b/setup.py @@ -40,14 +40,14 @@ def main(): `the repository issues page `_ if you encounter any problems, and create a new issue if needed! """, # noqa: E501 - version='0.7.0', + version='0.7.1', author='ipython-contrib and jupyter-contrib developers', author_email='jupytercontrib@gmail.com', url=('https://github.com/' 'ipython-contrib/jupyter_contrib_nbextensions.git'), download_url=('https://github.com/' 'ipython-contrib/jupyter_contrib_nbextensions' - '/tarball/0.7.0'), + '/tarball/0.7.1'), keywords=['IPython', 'Jupyter', 'notebook'], license='BSD', platforms=['Any'], @@ -62,11 +62,9 @@ def main(): 'ipython_genutils', 'jupyter_contrib_core >=0.3.3', 'jupyter_core', - 'jupyter_highlight_selected_word >=0.1.1', 'jupyter_nbextensions_configurator >=0.4.0', 'nbconvert >=6.0', 'notebook >=6.0', -# 'pyyaml', 'tornado', 'traitlets >=4.1', 'lxml' diff --git a/src/jupyter_contrib_nbextensions/__init__.py b/src/jupyter_contrib_nbextensions/__init__.py index 15a864d1e..e11a316ba 100644 --- a/src/jupyter_contrib_nbextensions/__init__.py +++ b/src/jupyter_contrib_nbextensions/__init__.py @@ -4,7 +4,7 @@ import jupyter_nbextensions_configurator -__version__ = '0.7.0' +__version__ = '0.7.1' def _jupyter_server_extension_paths(): diff --git a/src/jupyter_contrib_nbextensions/install.py b/src/jupyter_contrib_nbextensions/install.py index 09255f3e5..cc696be9c 100644 --- a/src/jupyter_contrib_nbextensions/install.py +++ b/src/jupyter_contrib_nbextensions/install.py @@ -4,7 +4,6 @@ import errno import os -import jupyter_highlight_selected_word from jupyter_contrib_core.notebook_compat import nbextensions from jupyter_nbextensions_configurator.application import ( EnableJupyterNbextensionsConfiguratorApp, @@ -61,7 +60,6 @@ def toggle_install_files(install, user=False, sys_prefix=False, logger=None, 'jupyter data directory')) component_nbext_packages = [ jupyter_contrib_nbextensions, - jupyter_highlight_selected_word, ] for mod in component_nbext_packages: if install: