guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7615e546bf772f4fcf02c3698e2755c18b6a0d61
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jan 27 10:09:24 2026 +0000

    gnu: python-jupyter-client: Set default version to 7.
    
    * gnu/packages/jupyter.scm (python-jupyter-client-7,
    python-jupyter-client-8): New variables.
    (python-jupyter-client): Set to python-jupyter-client-7.
    
    Change-Id: I8868d2a40e9679ac239ee0a09b151225ec08c511
    Reviewed-by: Reza Housseini <[email protected]>
---
 gnu/packages/jupyter.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 21f539071e..781552b4cf 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -430,7 +430,7 @@ interactive computing.")
 to Jupyter Server for their Python Web application backend.")
     (license license:bsd-3)))
 
-(define-public python-jupyter-client
+(define-public python-jupyter-client-8
   (package
     (name "python-jupyter-client")
     (version "8.7.0")
@@ -491,7 +491,7 @@ installing @code{kernelspec}s for use with Jupyter 
frontends.")
 
 (define-public python-jupyter-client-7
   (package
-    (inherit python-jupyter-client)
+    (inherit python-jupyter-client-8)
     (name "python-jupyter-client")
     (version "7.4.9")
     (source
@@ -517,6 +517,8 @@ installing @code{kernelspec}s for use with Jupyter 
frontends.")
            python-tornado
            python-traitlets))))
 
+(define-public python-jupyter-client python-jupyter-client-7)
+
 ;; Bootstrap variant of jupyter-client, which breaks the loop between ipykernel
 ;; and jupyter-client by removing the former from its native-inputs and
 ;; disabling tests.

Reply via email to