Skip to content

Commit 80825cd

Browse files
authored
Merge pull request #1603 from juhasch/fix/remove_dependency
Remove latex_envs import
2 parents b38aae2 + 8641b79 commit 80825cd

File tree

10 files changed

+0
-30
lines changed

10 files changed

+0
-30
lines changed

conda.recipe/meta.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ requirements:
2525
- jupyter_contrib_core >=0.3.3
2626
- jupyter_core
2727
- jupyter_highlight_selected_word >=0.1.1
28-
- jupyter_latex_envs >=1.4.0
2928
- jupyter_nbextensions_configurator >=0.4.0
3029
- nbconvert >=4.2
3130
- notebook >=6.0

docs/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
ipython
22
jupyter_highlight_selected_word>=0.0.5
3-
jupyter_latex_envs>=1.3.4
43
jupyter_nbextensions_configurator>=0.2.8
54
readthedocs-sphinx-ext
65
recommonmark>=0.4.0

docs/source/conf.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@
5858
'nbextensions/exercise/history.md',
5959
# slidemode2 has no yaml, so this won't be linked to in autogenerated toc
6060
'nbextensions/slidemode/slidemode2/README.md',
61-
# latex_envs includes its readme twice, but we only use one copy
62-
'nbextensions/latex_envs/doc/README.md',
6361
]
6462

6563
# The master toctree document.

src/jupyter_contrib_nbextensions/install.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import os
66

77
import jupyter_highlight_selected_word
8-
import latex_envs
98
from jupyter_contrib_core.notebook_compat import nbextensions
109
from jupyter_nbextensions_configurator.application import (
1110
EnableJupyterNbextensionsConfiguratorApp,
@@ -63,7 +62,6 @@ def toggle_install_files(install, user=False, sys_prefix=False, logger=None,
6362
component_nbext_packages = [
6463
jupyter_contrib_nbextensions,
6564
jupyter_highlight_selected_word,
66-
latex_envs,
6765
]
6866
for mod in component_nbext_packages:
6967
if install:

src/jupyter_contrib_nbextensions/migrate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def _migrate_require_paths(logger=None):
5858
'usability/hinterland/hinterland',
5959
'usability/init_cell/main',
6060
'usability/keyboard_shortcut_editor/main',
61-
'usability/latex_envs/latex_envs',
6261
'usability/limit_output/main',
6362
'usability/move_selected_cells/main',
6463
'usability/navigation-hotkeys/main',

src/jupyter_contrib_nbextensions/nbextensions/highlighter/demo_highlighter.ipynb

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,6 @@
9090
"pygments_lexer": "ipython3",
9191
"version": "3.4.3+"
9292
},
93-
"latex_envs": {
94-
"bibliofile": "biblio.bib",
95-
"cite_by": "apalike",
96-
"current_citInitial": 1,
97-
"eqLabelWithNumbers": true,
98-
"eqNumInitial": 0
99-
}
10093
},
10194
"nbformat": 4,
10295
"nbformat_minor": 0

src/jupyter_contrib_nbextensions/nbextensions/highlighter/export_highlights.ipynb

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,6 @@
188188
"pygments_lexer": "ipython3",
189189
"version": "3.4.3+"
190190
},
191-
"latex_envs": {
192-
"bibliofile": "biblio.bib",
193-
"cite_by": "apalike",
194-
"current_citInitial": 1,
195-
"eqLabelWithNumbers": true,
196-
"eqNumInitial": 0
197-
}
198191
},
199192
"nbformat": 4,
200193
"nbformat_minor": 0

src/jupyter_contrib_nbextensions/nbextensions/highlighter/tst_highlights.ipynb

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,6 @@
4747
"pygments_lexer": "ipython3",
4848
"version": "3.4.3+"
4949
},
50-
"latex_envs": {
51-
"bibliofile": "biblio.bib",
52-
"cite_by": "apalike",
53-
"current_citInitial": 1,
54-
"eqLabelWithNumbers": true,
55-
"eqNumInitial": 0
56-
}
5750
},
5851
"nbformat": 4,
5952
"nbformat_minor": 0

tests/test_application.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ def _check_install(self, dirs):
104104
expected_require_paths = [
105105
p.replace('/', os.path.sep) + '.js' for p in [
106106
'highlight_selected_word/main',
107-
'latex_envs/latex_envs',
108107
]]
109108
for req_part in expected_require_paths:
110109
if not any([

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ usedevelop = false
2828
deps =
2929
coverage>=4.2
3030
jupyter_highlight_selected_word>=0.0.5
31-
jupyter_latex_envs>=1.4.0
3231
mock
3332
nose
3433
notebook57: notebook==5.7

0 commit comments

Comments
 (0)