guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: poetry: Fix a problem with a dependency.


From: guix-commits
Subject: branch master updated: gnu: poetry: Fix a problem with a dependency.
Date: Thu, 03 Dec 2020 16:40:44 -0500

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new d18a437  gnu: poetry: Fix a problem with a dependency.
d18a437 is described below

commit d18a4375f30afa06c5b08a7e0f7d972a7e8296ee
Author: Tanguy Le Carrour <tanguy@bioneland.org>
AuthorDate: Wed Dec 2 09:33:54 2020 +0100

    gnu: poetry: Fix a problem with a dependency.
    
    * gnu/packages/python-xyz.scm (poetry)[arguments]: Relax version constraints
    for python-packaging.
    
    Signed-off-by: Marius Bakke <marius@gnu.org>
---
 gnu/packages/python-xyz.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bffb643..67447bd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13227,7 +13227,10 @@ compatible build front-ends to build Poetry managed 
projects.")
              (substitute* "setup.py"
                ;; Newer versions of keyring produce a package with version 
"0.0.0"
                ;; Reported upstream: 
<https://github.com/jaraco/keyring/issues/469>
-               (("keyring>=21.2.0,<22.0.0") "keyring>=21.0.0,<22.0.0"))
+               (("keyring>=21.2.0,<22.0.0") "keyring>=21.0.0,<22.0.0")
+               ;; TODO: remove after the next release cycle,
+               ;; when packaging has been updated.
+               (("packaging>=20.4,<21.0") "packaging>=20.0,<21.0"))
              #t)))))
     (propagated-inputs
      `(("python-cachecontrol" ,python-cachecontrol)



reply via email to

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