Skip to content

Commit ed3e91e

Browse files
author
Jürgen Hasch
committed
Merge branch 'master' into feature/pre_embedimages
2 parents 502af43 + a4544ec commit ed3e91e

File tree

151 files changed

+3866
-3412
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+3866
-3412
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.8
2+
current_version = 0.4.0
33
commit = True
44
message = release {new_version}
55
tag = False

.travis.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ matrix:
8282
allow_failures:
8383
- env: TOXENV=appveyorartifacts
8484
- env: TOXENV=docs_linkcheck
85-
- env: TOXENV=lint
8685
env:
8786
global:
8887
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
@@ -105,24 +104,13 @@ before_install:
105104
- 'if [[ ${OSX_PYTHON} ]]; then if [[ $(which python3.4) ]]; then ls -l $(which python3.4); else echo "missing"; fi; fi'
106105
- 'if [[ ${OSX_PYTHON} ]]; then if [[ $(which python3.5) ]]; then ls -l $(which python3.5); else echo "missing"; fi; fi'
107106
# stuff for conda recipe
108-
# Note we're currently installing 4.3.11 specifically, since conda 4.3.14-16
109-
# have a bug which stop them intalling anything on travis (see
110-
# https://github.com/conda/conda/issues/5033
111-
# for details).
112-
# This has been fixed in mewer conda versions
113-
# (>=4.3.17), but the current 'latest' installer is still 4.3.14, so we need to specify the
114-
# previous version. This should change in future once an installer for
115-
# >=4.3.17 is released!
116-
- 'if [[ ${TOXENV} == "condarecipe" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-4.3.11-Linux-x86_64.sh -O miniconda.sh; fi'
107+
- 'if [[ ${TOXENV} == "condarecipe" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi'
117108
- 'if [[ ${TOXENV} == "condarecipe" ]]; then bash miniconda.sh -b -p $HOME/miniconda; fi'
118109
- 'if [[ ${TOXENV} == "condarecipe" ]]; then export PATH="$HOME/miniconda/bin:$PATH"; fi'
119110
- 'if [[ ${TOXENV} == "condarecipe" ]]; then hash -r; fi'
120111
- 'if [[ ${TOXENV} == "condarecipe" ]]; then conda config --set always_yes yes --set changeps1 no; fi'
121112
- 'if [[ ${TOXENV} == "condarecipe" ]]; then conda info -a; fi # Useful for debugging any issues with conda'
122-
# update conda, this should skip over the problematic 4.3.14-4.3.16 anyway
123-
- 'if [[ ${TOXENV} == "condarecipe" ]]; then conda update conda; fi'
124113
- 'if [[ ${TOXENV} == "condarecipe" ]]; then conda install conda-build; fi'
125-
- 'if [[ ${TOXENV} == "condarecipe" ]]; then conda info -a; fi # Useful for debugging any issues with conda'
126114
- 'if [[ ${TOXENV} == "condarecipe" ]]; then conda config --append channels conda-forge; fi # add conda-forge channel at lower priority than defaults'
127115
- 'if [[ ${TOXENV} == "condarecipe" ]]; then git fetch --unshallow; fi'
128116
install:

CHANGELOG.md

Lines changed: 899 additions & 0 deletions
Large diffs are not rendered by default.

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# explicit includes
22
include COPYING.rst
33
include README.md
4+
include CHANGELOG.md
45
include tox.ini
56
include .bumpversion.cfg
67

README.md

Lines changed: 19 additions & 498 deletions
Large diffs are not rendered by default.

appveyor.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ cache:
88
environment:
99
COVERALLS_REPO_TOKEN:
1010
secure: lFyaxdbvCvXKM+PjmN9FToU8DhsdS474RgaW/bNAu4IBnn7QbfZzDYrjKw33V6Oo
11+
global:
12+
# lxml will not build appropriately from source on Windows without the
13+
# appropriate libxml headers. As a result, make pip use binary packages.
14+
PIP_ONLY_BINARY: lxml
1115
matrix:
1216

1317
- TOXENV: 'py27-notebook'
@@ -39,13 +43,13 @@ environment:
3943
PYTHON_HOME: C:\Python34
4044
PYTHON_VERSION: '3.4'
4145
PYTHON_ARCH: '32'
42-
46+
4347
- TOXENV: 'py34-notebook43'
4448
TOXPYTHON: C:\Python34\python.exe
4549
PYTHON_HOME: C:\Python34
4650
PYTHON_VERSION: '3.4'
4751
PYTHON_ARCH: '32'
48-
52+
4953
- TOXENV: 'py34-notebook44'
5054
TOXPYTHON: C:\Python34\python.exe
5155
PYTHON_HOME: C:\Python34

conda.recipe/meta.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,27 +12,27 @@ source:
1212

1313
build:
1414
number: {{ GIT_DESCRIBE_NUMBER }}
15-
script: python setup.py install --single-version-externally-managed --record=record.txt
15+
script: pip install --no-deps .
1616

1717
requirements:
1818
build:
1919
- python
20-
- setuptools
20+
- pip
2121

2222
run:
2323
- python
2424
- ipython_genutils
25-
- jupyter_contrib_core >=0.3
25+
- jupyter_contrib_core >=0.3.3
2626
- jupyter_core
2727
- jupyter_highlight_selected_word >=0.0.10
2828
- jupyter_latex_envs >=1.3.8
29-
- jupyter_nbextensions_configurator >=0.2.4
29+
- jupyter_nbextensions_configurator >=0.4.0
3030
- nbconvert >=4.2
3131
- notebook >=4.0
3232
- pyyaml
33-
- setuptools
3433
- tornado
3534
- traitlets >=4.1
35+
- lxml >=3.8.0
3636

3737
test:
3838
imports:

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ipython
22
jupyter_highlight_selected_word>=0.0.5
33
jupyter_latex_envs>=1.3.4
4-
jupyter_nbextensions_configurator
4+
jupyter_nbextensions_configurator>=0.2.8
55
readthedocs-sphinx-ext
66
recommonmark>=0.4.0
77
sphinx>=1.3.6,<1.6

docs/source/conf.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
# built documents.
4242
#
4343
# The short X.Y version.
44-
version = '0.2.8'
44+
version = '0.4.0'
4545
# The full version, including alpha/beta/rc tags.
46-
release = '0.2.8'
46+
release = '0.4.0'
4747

4848
# The suffix(es) of source filenames.
4949
# You can specify multiple suffix as a list of strings
@@ -85,6 +85,10 @@
8585

8686
suppress_warnings = ['image.nonlocal_uri']
8787

88+
# don't check for the existence of anchors, since on e.g. github's rendered
89+
# markdown, the anchors are constructed by the rendering javascript, and
90+
# therefore not present in the initial response
91+
linkcheck_anchors = False
8892
# regex patterns for the beginning of links not to check
8993
linkcheck_ignore = [
9094
r'https?://(localhost|127\.0\.0\.1):\d+/', # local links

docs/source/exporting.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ Generic documentation for preprocessors can be found at
2121
`nbconvert.readthedocs.io/en/latest/api/preprocessors.html <http://nbconvert.readthedocs.io/en/latest/api/preprocessors.html>`__.
2222

2323

24+
Executing and updating timing metadata
25+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
26+
27+
.. autoclass:: ExecuteTimePreprocessor
28+
29+
2430
Retaining Codefolding
2531
^^^^^^^^^^^^^^^^^^^^^
2632

0 commit comments

Comments
 (0)