Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove dependency on jupyter_highlight_selected_word #1634

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.7.0
current_version = 0.7.1
commit = True
message = release {new_version}
tag = False
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ def main():
`the repository issues page <https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues>`_
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'],
Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/jupyter_contrib_nbextensions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import jupyter_nbextensions_configurator

__version__ = '0.7.0'
__version__ = '0.7.1'


def _jupyter_server_extension_paths():
Expand Down
2 changes: 0 additions & 2 deletions src/jupyter_contrib_nbextensions/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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:
Expand Down