GNU bug report logs - #59335
[PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests

Previous Next

Package: guix-patches;

Reported by: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Date: Thu, 17 Nov 2022 10:16:02 UTC

Severity: normal

Tags: patch

To reply to this bug, email your comments to 59335 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#59335; Package guix-patches. (Thu, 17 Nov 2022 10:16:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 17 Nov 2022 10:16:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Subject: [PATCH 0/2]: python-numexpr and python-sniffio: Update version,
 enable tests
Date: Thu, 17 Nov 2022 10:15:08 +0000
Sharlatan Hellseher (2):
  gnu: python-numexpr: Update to 2.8.4
  gnu: python-sniffio: Update to 1.3.0

 gnu/packages/python-xyz.scm | 25 ++++++++++---------------
 1 file changed, 10 insertions(+), 15 deletions(-)


base-commit: c9f927b7042d0cedadf7c29e83efaaa86a76b9e3
-- 
2.38.0





Information forwarded to guix-patches <at> gnu.org:
bug#59335; Package guix-patches. (Thu, 17 Nov 2022 10:18:02 GMT) Full text and rfc822 format available.

Message #8 received at 59335 <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 59335 <at> debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Subject: [PATCH 2/2] gnu: python-sniffio: Update to 1.3.0
Date: Thu, 17 Nov 2022 10:17:42 +0000
* gnu/packages/python-xyz.scm (python-sniffio): Update to 1.3.0.
  [build-system]: Use pyproject-build-system to simplify package.
---
 gnu/packages/python-xyz.scm | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8de175dd1a..d3fd727042 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -12342,20 +12342,14 @@ (define-public python-tables
 (define-public python-sniffio
   (package
     (name "python-sniffio")
-    (version "1.2.0")
+    (version "1.3.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "sniffio" version))
        (sha256
-        (base32 "1pnkvi6wvn4qd37y69n1ls6n8l63gfmn3pvb1jb50gqxxkn6wrn4"))))
-    (build-system python-build-system)
-    (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           (lambda _
-             (invoke "pytest" "-vv"))))))
+        (base32 "00cibg2madxg6j912qwpwkgggn1km8mg5dsrj8wga56kwp2ha0z6"))))
+    (build-system pyproject-build-system)
     (native-inputs
      (list python-curio python-pytest python-pytest-cov))
     (home-page "https://github.com/python-trio/sniffio")
-- 
2.38.0





Information forwarded to guix-patches <at> gnu.org:
bug#59335; Package guix-patches. (Thu, 17 Nov 2022 10:18:02 GMT) Full text and rfc822 format available.

Message #11 received at 59335 <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 59335 <at> debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Subject: [PATCH 1/2] gnu: python-numexpr: Update to 2.8.4
Date: Thu, 17 Nov 2022 10:17:41 +0000
* gnu/packages/python-xyz.scm (python-numexpr): Update to 2.8.4.
  [source]: Use git checkout with tests.
  [arguments]: Enable tests.
---
 gnu/packages/python-xyz.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1758450c2f..8de175dd1a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6535,16 +6535,17 @@ (define-public python-numpydoc
 (define-public python-numexpr
   (package
     (name "python-numexpr")
-    (version "2.7.3")
+    (version "2.8.4")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "numexpr" version))
+       (method git-fetch)   ; no tests data in PyPi package
+       (uri (git-reference
+             (url "https://github.com/pydata/numexpr")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32
-         "09d8yfsx33ddwfkpn8805w2mxnn4cvf47yc66g4azldpz4lnaqa3"))))
+        (base32 "0cyasc7m9sidgg7ajjqd4ab3pswwzcnrrv6jxfaw7cn6hmg7mpj7"))))
     (build-system python-build-system)
-    (arguments `(#:tests? #f))          ; no tests included
     (propagated-inputs
      (list python-numpy))
     (home-page "https://github.com/pydata/numexpr")
-- 
2.38.0





Information forwarded to guix-patches <at> gnu.org:
bug#59335; Package guix-patches. (Thu, 01 Dec 2022 21:48:02 GMT) Full text and rfc822 format available.

Message #14 received at 59335 <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Cc: 59335 <at> debbugs.gnu.org
Subject: Re: bug#59335: [PATCH 0/2]: python-numexpr and python-sniffio:
 Update version, enable tests
Date: Thu, 01 Dec 2022 22:47:34 +0100
Hi,

Sharlatan Hellseher <sharlatanus <at> gmail.com> skribis:

> Sharlatan Hellseher (2):
>   gnu: python-numexpr: Update to 2.8.4
>   gnu: python-sniffio: Update to 1.3.0

According to <https://qa.guix.gnu.org/issue/59335>, this breaks a single
package, python-sanic.

Could you take a look?  Perhaps it’s just a matter of upgrading it
first.

Thanks,
Ludo’.




Information forwarded to guix-patches <at> gnu.org:
bug#59335; Package guix-patches. (Mon, 05 Dec 2022 22:06:01 GMT) Full text and rfc822 format available.

Message #17 received at 59335 <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 59335 <at> debbugs.gnu.org
Subject: Re: bug#59335: [PATCH 0/2]: python-numexpr and python-sniffio: Update
 version, enable tests
Date: Mon, 5 Dec 2022 22:05:26 +0000
Hi,

As far as I can see Guix provides LTS version of Sanic which comes as
the last release of the year
https://sanic.dev/en/guide/release-notes/v21.12.html
The corrent version is pre LTS
https://sanic.dev/en/guide/release-notes/v22.9.html#introduction.
I'll check it when the LTS is avaiallbe (expecting end of Desember
with v22.12.1)

Regards,
Oleg

On Thu, 1 Dec 2022 at 21:47, Ludovic Courtès <ludo <at> gnu.org> wrote:
>
> Hi,
>
> Sharlatan Hellseher <sharlatanus <at> gmail.com> skribis:
>
> > Sharlatan Hellseher (2):
> >   gnu: python-numexpr: Update to 2.8.4
> >   gnu: python-sniffio: Update to 1.3.0
>
> According to <https://qa.guix.gnu.org/issue/59335>, this breaks a single
> package, python-sanic.
>
> Could you take a look?  Perhaps it’s just a matter of upgrading it
> first.
>
> Thanks,
> Ludo’.



-- 

… наш разум - превосходная объяснительная машина которая способна
найти смысл почти в чем угодно, истолковать любой феномен, но
совершенно не в состоянии принять мысль о непредсказуемости.

This bug report was last modified 1 year and 147 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.