Skip to content

Commit a186b18

Browse files
authored
Merge pull request ipython-contrib#1562 from juhasch/feature/release
Update changelog for 0.5.3
2 parents 7230f2a + ac79e58 commit a186b18

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@ readthedocs stuff gets all the shiny link goodness. Thanks!
1818
Unreleased (aka. GitHub master)
1919
-------------------------------
2020

21-
This is where each new PR to the project should add a summary of its changes,
22-
which makes it much easier to fill in each release's changelog :)
21+
0.5.3
22+
-----
2323

2424
- Replace `template_path` with `extra_template_paths` [#1532](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1532). Nbconvert 6.0 replaced `template_path` with `extra_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).
2525
- Update `install_requires` list in `setup.py` with 'nbconvert >=6.0'
2626
- Drop support for python < 3.6
27+
- [toc2] fix for disappearing sidebar in static html_toc export [#1548](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1548)
28+
- Fix Extensions Not Loading for Large Notebooks [#1499](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1499)
29+
- Support non-live notebook such as nbconvert output [#1535](https://github.com/ipython-contrib/jupyter_contrib_nbextensions/pull/1535)
2730

2831
0.5.1
2932
-----

appveyor.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@ environment:
1313
# appropriate libxml headers. As a result, make pip use binary packages.
1414
PIP_ONLY_BINARY: lxml
1515
matrix:
16-
17-
- TOXENV: 'py36-notebook60'
18-
TOXPYTHON: C:\Python36\python.exe
19-
PYTHON_HOME: C:\Python36
20-
PYTHON_VERSION: '3.6'
21-
PYTHON_ARCH: '64'
22-
2316
- TOXENV: 'py37-notebook60'
2417
TOXPYTHON: C:\Python36\python.exe
2518
PYTHON_HOME: C:\Python37

tox.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@
22
# https://testrun.org/tox/latest/config.html#generative-envlist
33

44
[tox]
5+
ignore_basepython_conflict=true
56
envlist =
67
clean,
78
check,
89
lint,
9-
{py36,py37,py38}-notebook{60,63},
10+
{py37,py38}-notebook{60,63},
1011
report,
1112

1213
[testenv]
1314
basepython =
1415
pypy: {env:TOXPYTHON:pypy}
15-
py36: {env:TOXPYTHON:python3.6}
1616
py37: {env:TOXPYTHON:python3.7}
1717
py38: {env:TOXPYTHON:python3.8}
1818
{spell}: {env:TOXPYTHON:python3.8}
19-
{appveyorartifacts,lint,check}: {env:TOXPYTHON:python3}
19+
{appveyorartifacts,lint,check}: {env:TOXPYTHON:python3.8}
2020
{condarecipe}: {env:TOXPYTHON:python3}
21-
{clean,codecov,coveralls,report}: {env:TOXPYTHON:python3}
22-
{docs,docs_build,docs_linkcheck}: {env:TOXPYTHON:python3}
23-
{bump,pypi_build,pypi_upload}: {env:TOXPYTHON:python3}
21+
{clean,codecov,coveralls,report}: {env:TOXPYTHON:python3.8}
22+
{docs,docs_build,docs_linkcheck}: {env:TOXPYTHON:python3.8}
23+
{bump,pypi_build,pypi_upload}: {env:TOXPYTHON:python3.8}
2424
setenv =
2525
PYTHONPATH={toxinidir}/tests
2626
PYTHONUNBUFFERED=yes

0 commit comments

Comments
 (0)