Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
upgrade version
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpython committed Jan 28, 2023
1 parent a84e165 commit 15c6df7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 15 deletions.
12 changes: 3 additions & 9 deletions HISTORY.rst
Expand Up @@ -5,9 +5,11 @@
History
=======

current - 2023-01-01 - 0.00Mb
current - 2023-01-28 - 0.00Mb
=============================

* #384: Renames phdoc_static into _static (2023-01-28)
* #383: Fixes attribute source missing for sphinx>6 (2023-01-10)
* #382: Adds parameter raise_exception to stop the execution of a notebook (2022-12-05)

1.11.3776 - 2022-11-21 - 2.99Mb
Expand Down Expand Up @@ -115,15 +117,7 @@ current - 2023-01-01 - 0.00Mb
* #329: Fixes #328, improves links in notebooks (2021-02-13)
* #328: Github link for notebooks is broken (2021-02-13)
* #326: Add option CRB to put \r back in a file (2021-02-09)

1.10.3519 - 2021-01-13 - 2.10Mb
===============================

* #325: Implements a scenario with keyrings.cryptfile for get_password, set_password (2021-01-10)

1.10.3508 - 2021-01-08 - 2.10Mb
===============================

* #324: Fixes issue with jupyter-client-6.1.10 on Windows (2021-01-08)
* #314: fixes function _process_notebooks_in_private for newer version of nbconvert + missing file rst.tpl (2020-12-31)
* #323: Add function assert_almost_equal_detailed with more feedback (2020-12-10)
Expand Down
6 changes: 3 additions & 3 deletions _doc/notebooks/example_nbimage.ipynb
Expand Up @@ -64,7 +64,7 @@
" // when converted in RST\n",
" href = anchors[i].id;\n",
" text_memo += \"#1-\" + href;\n",
" // passer à child suivant (le chercher)\n",
" // passer \u00e0 child suivant (le chercher)\n",
" }\n",
" else if (child.hasAttribute(\"id\")) {\n",
" // in a notebook\n",
Expand All @@ -83,7 +83,7 @@
" if ((level < lfirst) || (level > llast)) {\n",
" continue ;\n",
" }\n",
" if (title.endsWith('')) {\n",
" if (title.endsWith('\u00b6')) {\n",
" title = title.substring(0,title.length-1).replace(\"<\", \"&lt;\")\n",
" .replace(\">\", \"&gt;\").replace(\"&\", \"&amp;\");\n",
" }\n",
Expand Down Expand Up @@ -338,4 +338,4 @@
},
"nbformat": 4,
"nbformat_minor": 5
}
}
3 changes: 2 additions & 1 deletion _unittests/ut_ipythonhelper/test_notebook_extension.py
Expand Up @@ -47,7 +47,8 @@ def test_notebook_extension(self):
f"Unable to install jupyter extensions due to EOFError: {e}")
return
except Exception as ee:
raise AssertionError(f"Fails due to {type(ee)} - {ee}.") from ee
raise AssertionError(
f"Fails due to {type(ee)} - {ee}.") from ee
fLOG(out)

fLOG("extension")
Expand Down
2 changes: 1 addition & 1 deletion src/pyquickhelper/__init__.py
Expand Up @@ -6,7 +6,7 @@
sphinx extension, jenkins helpers...
"""

__version__ = "1.11.3791"
__version__ = "1.12.3806"
__author__ = "Xavier Dupré"
__github__ = "https://github.com/sdpython/pyquickhelper"
__url__ = "http://www.xavierdupre.fr/app/pyquickhelper/helpsphinx/index.html"
Expand Down
3 changes: 2 additions & 1 deletion src/quicksetup/pyquicksetup/pyquick.py
Expand Up @@ -195,7 +195,8 @@ class SetupCommandSphinx(_SetupCommand):

user_options = [
('layout=', None, 'format generation, default is html,rst.'),
('nbformats=', None, 'format generation, default is ipynb,slides,html,python,rst,github'),
('nbformats=', None,
'format generation, default is ipynb,slides,html,python,rst,github'),
]

def initialize_options(self):
Expand Down

0 comments on commit 15c6df7

Please sign in to comment.