GNU bug report logs - #56671
[PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1.

Previous Next

Package: guix-patches;

Reported by: Greg Hogan <code <at> greghogan.com>

Date: Wed, 20 Jul 2022 17:43:02 UTC

Severity: normal

Tags: patch

Done: Marius Bakke <marius <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 56671 in the body.
You can then email your comments to 56671 AT debbugs.gnu.org in the normal way.

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#56671; Package guix-patches. (Wed, 20 Jul 2022 17:43:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Greg Hogan <code <at> greghogan.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 20 Jul 2022 17:43:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: guix-patches <at> gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1.
Date: Wed, 20 Jul 2022 17:42:41 +0000
This patchset updates python-numpy-next, which has no dependents but
requires updates to python-cython and python-typing-extensions.

Greg Hogan (3):
  gnu: python-cython: Update to 0.29.30.
  gnu: python-typing-extensions: Update to 4.3.0.
  gnu: python-numpy-next: Update to 1.23.1.

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

-- 
2.37.0





Information forwarded to guix-patches <at> gnu.org:
bug#56671; Package guix-patches. (Wed, 20 Jul 2022 17:47:01 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: 56671 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH core-updates 1/3] gnu: python-cython: Update to 0.29.30.
Date: Wed, 20 Jul 2022 17:45:51 +0000
* gnu/packages/python-xyz.scm (python-cython): Update to 0.29.30.
---
 gnu/packages/python-xyz.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a4a090be7c..8c68ea421c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5362,13 +5362,13 @@ (define-public mallard-ducktype
 (define-public python-cython
   (package
     (name "python-cython")
-    (version "0.29.24")
+    (version "0.29.30")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "Cython" version))
        (sha256
-        (base32 "0hw4gs18rh4slij1fg252argxhraypld9apbqbl60230qc3lvw6d"))))
+        (base32 "1qzrcnla3fg4fmf7ncvxhr1y35gvya1ybj12jjwshvzym0nvcd92"))))
     (build-system python-build-system)
     ;; we need the full python package and not just the python-wrapper
     ;; because we need libpython3.3m.so
-- 
2.37.0





Information forwarded to guix-patches <at> gnu.org:
bug#56671; Package guix-patches. (Wed, 20 Jul 2022 17:47:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: 56671 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH core-updates 2/3] gnu: python-typing-extensions: Update to
 4.3.0.
Date: Wed, 20 Jul 2022 17:45:52 +0000
* gnu/packages/python-xyz.scm (python-typing-extensions): Update to 4.3.0.
[origin]: Use url-fetch.
---
 gnu/packages/python-xyz.scm | 15 ++++-----------
 1 file changed, 4 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8c68ea421c..33a0e6db88 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21366,26 +21366,19 @@ (define-public python-typeguard
 (define-public python-typing-extensions
   (package
     (name "python-typing-extensions")
-    (version "4.0.1")
+    (version "4.3.0")
     (source (origin
-              ;; The test script is missing from the PyPI archive.
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/python/typing")
-                    (commit version)))
-              (file-name (git-file-name name version))
+              (method url-fetch)
+              (uri (pypi-uri "typing_extensions" version))
               (sha256
                (base32
-                "0a35fh5wk9s538x0w3dz95y0avnhd2srzyv9s1a372711n8hdl4p"))))
+                "19n4l57qazwrbvxjrbxw2vvfyd0zbk8ivnwm4zmwfzzl69x6glp6"))))
     (build-system python-build-system)
     (arguments
      (list
       #:tests? #f       ;requires Python's test module, not available in Guix
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'unpack 'enter-source-directory
-            (lambda _
-              (chdir "typing_extensions")))
           ;; XXX: PEP 517 manual build copied from python-isort.
           (replace 'build
             (lambda _
-- 
2.37.0





Information forwarded to guix-patches <at> gnu.org:
bug#56671; Package guix-patches. (Wed, 20 Jul 2022 17:47:02 GMT) Full text and rfc822 format available.

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

From: Greg Hogan <code <at> greghogan.com>
To: 56671 <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: [PATCH core-updates 3/3] gnu: python-numpy-next: Update to 1.23.1.
Date: Wed, 20 Jul 2022 17:45:53 +0000
* gnu/packages/python-xyz.scm (python-numpy-next): Update to 1.23.1.
[native-inputs]: Add python-typing-extensions.
---
 gnu/packages/python-xyz.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 33a0e6db88..cfe3a330fa 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5505,7 +5505,7 @@ (define-public python-numpy-next
   (package
     (inherit python-numpy)
     (name "python-numpy-next")
-    (version "1.22.3")
+    (version "1.23.1")
     (source
      (origin
        (inherit (package-source python-numpy))
@@ -5515,7 +5515,10 @@ (define-public python-numpy-next
              version "/numpy-" version ".tar.gz"))
        (sha256
         (base32
-         "19dw91pqbqcniw2z57kiyqs1qp56g7kqy1bdyv664g8s62sc01m9"))))))
+         "095nv17vm8hvj8cj0d76syl9xh99bbnkgnjr9ccy3wpykcsfyj6p"))))
+    (native-inputs
+     (modify-inputs (package-native-inputs python-numpy)
+       (append python-typing-extensions)))))
 
 (define-public python-numpy-documentation
   (package
-- 
2.37.0





Reply sent to Marius Bakke <marius <at> gnu.org>:
You have taken responsibility. (Sat, 23 Jul 2022 21:07:02 GMT) Full text and rfc822 format available.

Notification sent to Greg Hogan <code <at> greghogan.com>:
bug acknowledged by developer. (Sat, 23 Jul 2022 21:07:02 GMT) Full text and rfc822 format available.

Message #19 received at 56671-done <at> debbugs.gnu.org (full text, mbox):

From: Marius Bakke <marius <at> gnu.org>
To: Greg Hogan <code <at> greghogan.com>, 56671-done <at> debbugs.gnu.org
Cc: Greg Hogan <code <at> greghogan.com>
Subject: Re: [bug#56671] [PATCH core-updates 0/3] gnu: python-numpy-next:
 Update to 1.23.1.
Date: Sat, 23 Jul 2022 23:05:52 +0200
[Message part 1 (text/plain, inline)]
Greg Hogan <code <at> greghogan.com> skriver:

> This patchset updates python-numpy-next, which has no dependents but
> requires updates to python-cython and python-typing-extensions.
>
> Greg Hogan (3):
>   gnu: python-cython: Update to 0.29.30.
>   gnu: python-typing-extensions: Update to 4.3.0.
>   gnu: python-numpy-next: Update to 1.23.1.

Pushed in c4386d0603..f7815e76b0, thank you!

I suppose it is time to also remove those "-next" variants.  :-)
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sun, 21 Aug 2022 11:24:08 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 303 days ago.

Previous Next


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