guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/08: gnu: python-ruamel-yaml: Update to 0.18.6.


From: guix-commits
Subject: 02/08: gnu: python-ruamel-yaml: Update to 0.18.6.
Date: Thu, 22 Feb 2024 08:14:34 -0500 (EST)

arunisaac pushed a commit to branch master
in repository guix.

commit e5ae409276412927a7aca905bc49f1591b80a5e4
Author: Arun Isaac <arunisaac@systemreboot.net>
AuthorDate: Fri Oct 20 16:40:22 2023 +0100

    gnu: python-ruamel-yaml: Update to 0.18.6.
    
    * gnu/package/serialization.scm (python-ruamel-yaml): Update to 0.18.6.
    (python-ruamel.yaml-0.16): New variable.
    * gnu/packages/package-management.scm (conda)[inputs]: Replace
    python-ruamel.yaml with python-ruamel.yaml-0.16.
    * gnu/packages/backup.scm (borgmatic)[inputs]: Replace python-ruamel.yaml 
with
    python-ruamel.yaml-0.16.
    * gnu/packages/python-xyz.scm (dynaconf)[inputs]: Replace python-ruamel.yaml
    with python-ruamel.yaml-0.16.
    
    Change-Id: Iff9eeeae043c9547d93a6c780f0c30bd760490d9
    
    Change-Id: I43cad7e3936f62d209fbba7e86b93519cfc1c1ba
    Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
---
 gnu/packages/backup.scm             |  2 +-
 gnu/packages/package-management.scm |  3 ++-
 gnu/packages/python-xyz.scm         |  2 +-
 gnu/packages/serialization.scm      | 16 ++++++++++++++--
 4 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index 0a0d901e67..253ab74a19 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -1341,7 +1341,7 @@ compression parameters used by Gzip.")
                      (invoke "pytest")))))))
     (inputs
      (list borg python-colorama python-jsonschema python-requests
-           python-ruamel.yaml))
+           python-ruamel.yaml-0.16))
     (native-inputs
      (list python-flexmock python-pytest python-pytest-cov))
     (home-page "https://torsion.org/borgmatic/";)
diff --git a/gnu/packages/package-management.scm 
b/gnu/packages/package-management.scm
index c1ad613bee..5d6bc47b8b 100644
--- a/gnu/packages/package-management.scm
+++ b/gnu/packages/package-management.scm
@@ -23,6 +23,7 @@
 ;;; Copyright © 2022, 2023 Zhu Zihao <all_but_last@163.com>
 ;;; Copyright © 2023 jgart <jgart@dismail.de>
 ;;; Copyright © 2023 Mădălin Ionel Patrașcu 
<madalinionel.patrascu@mdc-berlin.de>
+;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1251,7 +1252,7 @@ extracting, creating, and converting between formats.")
            python-pyyaml
            python-requests
            python-responses
-           python-ruamel.yaml
+           python-ruamel.yaml-0.16
            python-tqdm
            ;; XXX: This is dragged in by libarchive and is needed at runtime.
            zstd))
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c3dfb9603c..a051f5a8db 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33347,7 +33347,7 @@ Python @code{set} interface.")
                         "--maxfail=1" "tests/"))))))))
     (propagated-inputs
      (list python-click python-configobj python-dotenv-0.13.0
-           python-ruamel.yaml python-toml python-tomli))
+           python-ruamel.yaml-0.16 python-toml python-tomli))
     (native-inputs
      (list python-django python-flask python-pytest python-pytest-cov
            python-pytest-mock))
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index cceef41a2a..331fae80cf 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -745,14 +745,14 @@ includes the following features:
 (define-public python-ruamel.yaml
   (package
     (name "python-ruamel.yaml")
-    (version "0.16.13")
+    (version "0.18.6")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "ruamel.yaml" version))
        (sha256
         (base32
-         "0hm9yg785f46bkrgqknd6fdvmkby9dpzjnm0b63qf0i748acaj5v"))))
+         "06rimidc9nb3i3r90n3a1zwf0qxw24zqykb3wpxwd1p72yifc9wb"))))
     (build-system python-build-system)
     (native-inputs
      (list python-pytest))
@@ -771,6 +771,18 @@ and has round-trip loaders and dumpers.  It supports 
comments.  Block
 style and key ordering are kept, so you can diff the source.")
     (license license:expat)))
 
+(define-public python-ruamel.yaml-0.16
+  (package
+    (inherit python-ruamel.yaml)
+    (version "0.16.13")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "ruamel.yaml" version))
+       (sha256
+        (base32
+         "0hm9yg785f46bkrgqknd6fdvmkby9dpzjnm0b63qf0i748acaj5v"))))))
+
 (define-public python-ruamel.yaml.clib
   (package
     (name "python-ruamel.yaml.clib")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]