Skip to content

Commit

Permalink
Merge pull request #1603 from juhasch/fix/remove_dependency
Browse files Browse the repository at this point in the history
Remove latex_envs import
  • Loading branch information
juhasch authored Nov 15, 2022
2 parents b38aae2 + 8641b79 commit 80825cd
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 30 deletions.
1 change: 0 additions & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ requirements:
- jupyter_contrib_core >=0.3.3
- jupyter_core
- jupyter_highlight_selected_word >=0.1.1
- jupyter_latex_envs >=1.4.0
- jupyter_nbextensions_configurator >=0.4.0
- nbconvert >=4.2
- notebook >=6.0
Expand Down
1 change: 0 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
ipython
jupyter_highlight_selected_word>=0.0.5
jupyter_latex_envs>=1.3.4
jupyter_nbextensions_configurator>=0.2.8
readthedocs-sphinx-ext
recommonmark>=0.4.0
Expand Down
2 changes: 0 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@
'nbextensions/exercise/history.md',
# slidemode2 has no yaml, so this won't be linked to in autogenerated toc
'nbextensions/slidemode/slidemode2/README.md',
# latex_envs includes its readme twice, but we only use one copy
'nbextensions/latex_envs/doc/README.md',
]

# The master toctree document.
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 @@ -5,7 +5,6 @@
import os

import jupyter_highlight_selected_word
import latex_envs
from jupyter_contrib_core.notebook_compat import nbextensions
from jupyter_nbextensions_configurator.application import (
EnableJupyterNbextensionsConfiguratorApp,
Expand Down Expand Up @@ -63,7 +62,6 @@ def toggle_install_files(install, user=False, sys_prefix=False, logger=None,
component_nbext_packages = [
jupyter_contrib_nbextensions,
jupyter_highlight_selected_word,
latex_envs,
]
for mod in component_nbext_packages:
if install:
Expand Down
1 change: 0 additions & 1 deletion src/jupyter_contrib_nbextensions/migrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def _migrate_require_paths(logger=None):
'usability/hinterland/hinterland',
'usability/init_cell/main',
'usability/keyboard_shortcut_editor/main',
'usability/latex_envs/latex_envs',
'usability/limit_output/main',
'usability/move_selected_cells/main',
'usability/navigation-hotkeys/main',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,6 @@
"pygments_lexer": "ipython3",
"version": "3.4.3+"
},
"latex_envs": {
"bibliofile": "biblio.bib",
"cite_by": "apalike",
"current_citInitial": 1,
"eqLabelWithNumbers": true,
"eqNumInitial": 0
}
},
"nbformat": 4,
"nbformat_minor": 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,6 @@
"pygments_lexer": "ipython3",
"version": "3.4.3+"
},
"latex_envs": {
"bibliofile": "biblio.bib",
"cite_by": "apalike",
"current_citInitial": 1,
"eqLabelWithNumbers": true,
"eqNumInitial": 0
}
},
"nbformat": 4,
"nbformat_minor": 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,6 @@
"pygments_lexer": "ipython3",
"version": "3.4.3+"
},
"latex_envs": {
"bibliofile": "biblio.bib",
"cite_by": "apalike",
"current_citInitial": 1,
"eqLabelWithNumbers": true,
"eqNumInitial": 0
}
},
"nbformat": 4,
"nbformat_minor": 0
Expand Down
1 change: 0 additions & 1 deletion tests/test_application.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ def _check_install(self, dirs):
expected_require_paths = [
p.replace('/', os.path.sep) + '.js' for p in [
'highlight_selected_word/main',
'latex_envs/latex_envs',
]]
for req_part in expected_require_paths:
if not any([
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ usedevelop = false
deps =
coverage>=4.2
jupyter_highlight_selected_word>=0.0.5
jupyter_latex_envs>=1.4.0
mock
nose
notebook57: notebook==5.7
Expand Down

0 comments on commit 80825cd

Please sign in to comment.