apteryx pushed a commit to branch wip-ipython-polyglossia in repository guix.
commit 1472584cfbb1d61ff42b8e1ca4f954dbcae93f32 Author: Maxim Cournoyer <[email protected]> AuthorDate: Wed Apr 13 21:53:25 2022 -0400 gnu: python-notebook: Update to 6.4.10. * gnu/packages/python-xyz.scm (python-notebook): Update to 6.4.10. [phases]{check}: Remove add-installed-pythonpath. [native-inputs]: python-nest-asyncio. --- gnu/packages/python-xyz.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 69e531004d..f37ac4449d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -13706,13 +13706,13 @@ convert an @code{.ipynb} notebook file into various static formats including: (define-public python-notebook (package (name "python-notebook") - (version "6.3.0") + (version "6.4.10") (source (origin (method url-fetch) (uri (pypi-uri "notebook" version)) (sha256 (base32 - "0zfwr87ndjzmdp9adpc9lby1hdqdkjp2q7c9vff3wiw1dj6kkjfb")))) + "03p976xq1l9xf4djwk0snmywd0zck3i6gjngxsl874i8qrmsf214")))) (build-system python-build-system) (arguments `(#:phases @@ -13731,10 +13731,9 @@ convert an @code{.ipynb} notebook file into various static formats including: (setenv "HOME" (getcwd)))) (replace 'check (lambda* (#:key tests? inputs outputs #:allow-other-keys) - ;; These tests require a browser + ;; These tests require a browser. (delete-file-recursively "notebook/tests/selenium") (when tests? - (add-installed-pythonpath inputs outputs) ;; Interferes with test expectations. (unsetenv "JUPYTER_CONFIG_PATH") ;; Some tests do not expect all files to be installed in the @@ -13751,6 +13750,7 @@ convert an @code{.ipynb} notebook file into various static formats including: python-jinja2 python-jupyter-client python-jupyter-core + python-nest-asyncio python-nbconvert python-nbformat python-prometheus-client
