all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#56671] [PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1.
@ 2022-07-20 17:42 Greg Hogan
  2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 1/3] gnu: python-cython: Update to 0.29.30 Greg Hogan
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Greg Hogan @ 2022-07-20 17:42 UTC (permalink / raw)
  To: 56671; +Cc: Greg Hogan

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





^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#56671] [PATCH core-updates 1/3] gnu: python-cython: Update to 0.29.30.
  2022-07-20 17:42 [bug#56671] [PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1 Greg Hogan
@ 2022-07-20 17:45 ` Greg Hogan
  2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 2/3] gnu: python-typing-extensions: Update to 4.3.0 Greg Hogan
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Hogan @ 2022-07-20 17:45 UTC (permalink / raw)
  To: 56671; +Cc: Greg Hogan

* 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





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#56671] [PATCH core-updates 2/3] gnu: python-typing-extensions: Update to 4.3.0.
  2022-07-20 17:42 [bug#56671] [PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1 Greg Hogan
  2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 1/3] gnu: python-cython: Update to 0.29.30 Greg Hogan
@ 2022-07-20 17:45 ` Greg Hogan
  2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 3/3] gnu: python-numpy-next: Update to 1.23.1 Greg Hogan
  2022-07-23 21:05 ` bug#56671: [PATCH core-updates 0/3] " Marius Bakke
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Hogan @ 2022-07-20 17:45 UTC (permalink / raw)
  To: 56671; +Cc: Greg Hogan

* 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





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#56671] [PATCH core-updates 3/3] gnu: python-numpy-next: Update to 1.23.1.
  2022-07-20 17:42 [bug#56671] [PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1 Greg Hogan
  2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 1/3] gnu: python-cython: Update to 0.29.30 Greg Hogan
  2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 2/3] gnu: python-typing-extensions: Update to 4.3.0 Greg Hogan
@ 2022-07-20 17:45 ` Greg Hogan
  2022-07-23 21:05 ` bug#56671: [PATCH core-updates 0/3] " Marius Bakke
  3 siblings, 0 replies; 5+ messages in thread
From: Greg Hogan @ 2022-07-20 17:45 UTC (permalink / raw)
  To: 56671; +Cc: Greg Hogan

* 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





^ permalink raw reply related	[flat|nested] 5+ messages in thread

* bug#56671: [PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1.
  2022-07-20 17:42 [bug#56671] [PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1 Greg Hogan
                   ` (2 preceding siblings ...)
  2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 3/3] gnu: python-numpy-next: Update to 1.23.1 Greg Hogan
@ 2022-07-23 21:05 ` Marius Bakke
  3 siblings, 0 replies; 5+ messages in thread
From: Marius Bakke @ 2022-07-23 21:05 UTC (permalink / raw)
  To: Greg Hogan, 56671-done; +Cc: Greg Hogan

[-- Attachment #1: Type: text/plain, Size: 452 bytes --]

Greg Hogan <code@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.  :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-07-23 21:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-20 17:42 [bug#56671] [PATCH core-updates 0/3] gnu: python-numpy-next: Update to 1.23.1 Greg Hogan
2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 1/3] gnu: python-cython: Update to 0.29.30 Greg Hogan
2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 2/3] gnu: python-typing-extensions: Update to 4.3.0 Greg Hogan
2022-07-20 17:45 ` [bug#56671] [PATCH core-updates 3/3] gnu: python-numpy-next: Update to 1.23.1 Greg Hogan
2022-07-23 21:05 ` bug#56671: [PATCH core-updates 0/3] " Marius Bakke

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.