Skip to content

Commit 9606d61

Browse files
committed
replace template_path with template_paths 2
1 parent a1ef675 commit 9606d61

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Unreleased (aka. GitHub master)
2121
This is where each new PR to the project should add a summary of its changes,
2222
which makes it much easier to fill in each release's changelog :)
2323

24+
- Replace `template_path` with `template_paths` [#1532](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1532). Nbconvert 6.0 replaced `template_path` with `template_paths` (see https://nbconvert.readthedocs.io/en/latest/changelog.html#significant-changes). This change in Nbconvert 6.0 causes errors in jupyter_latex_envs and in jupyter_contrib_nbextensions (see [#1529](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/issues/1529).
25+
- Update `install_requires` list in `setup.py` with 'nbconvert >=6.0'
26+
2427
0.5.1
2528
-----
2629

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def main():
6767
'jupyter_highlight_selected_word >=0.1.1',
6868
'jupyter_latex_envs >=1.3.8',
6969
'jupyter_nbextensions_configurator >=0.4.0',
70-
'nbconvert >=4.2',
70+
'nbconvert >=6.0',
7171
'notebook >=4.0',
7272
'pyyaml',
7373
'tornado',
@@ -81,7 +81,7 @@ def main():
8181
'pip',
8282
'requests',
8383
],
84-
'test:python_version == "2.7"': [
84+
'test:python_version == "3.8"': [
8585
'mock',
8686
],
8787
},

0 commit comments

Comments
 (0)