unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests
@ 2022-11-17 10:15 Sharlatan Hellseher
  2022-11-17 10:17 ` [bug#59335] [PATCH 1/2] gnu: python-numexpr: Update to 2.8.4 Sharlatan Hellseher
  2022-12-01 21:47 ` [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2022-11-17 10:15 UTC (permalink / raw)
  To: 59335; +Cc: Sharlatan Hellseher

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





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

* [bug#59335] [PATCH 1/2] gnu: python-numexpr: Update to 2.8.4
  2022-11-17 10:15 [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests Sharlatan Hellseher
@ 2022-11-17 10:17 ` Sharlatan Hellseher
  2022-11-17 10:17   ` [bug#59335] [PATCH 2/2] gnu: python-sniffio: Update to 1.3.0 Sharlatan Hellseher
  2022-12-01 21:47 ` [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Sharlatan Hellseher @ 2022-11-17 10:17 UTC (permalink / raw)
  To: 59335; +Cc: Sharlatan Hellseher

* 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





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

* [bug#59335] [PATCH 2/2] gnu: python-sniffio: Update to 1.3.0
  2022-11-17 10:17 ` [bug#59335] [PATCH 1/2] gnu: python-numexpr: Update to 2.8.4 Sharlatan Hellseher
@ 2022-11-17 10:17   ` Sharlatan Hellseher
  0 siblings, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2022-11-17 10:17 UTC (permalink / raw)
  To: 59335; +Cc: Sharlatan Hellseher

* 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





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

* [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests
  2022-11-17 10:15 [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests Sharlatan Hellseher
  2022-11-17 10:17 ` [bug#59335] [PATCH 1/2] gnu: python-numexpr: Update to 2.8.4 Sharlatan Hellseher
@ 2022-12-01 21:47 ` Ludovic Courtès
  2022-12-05 22:05   ` Sharlatan Hellseher
  1 sibling, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2022-12-01 21:47 UTC (permalink / raw)
  To: Sharlatan Hellseher; +Cc: 59335

Hi,

Sharlatan Hellseher <sharlatanus@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’.




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

* [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests
  2022-12-01 21:47 ` [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests Ludovic Courtès
@ 2022-12-05 22:05   ` Sharlatan Hellseher
  0 siblings, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2022-12-05 22:05 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 59335

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@gnu.org> wrote:
>
> Hi,
>
> Sharlatan Hellseher <sharlatanus@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’.



-- 

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

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

end of thread, other threads:[~2022-12-05 22:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-17 10:15 [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests Sharlatan Hellseher
2022-11-17 10:17 ` [bug#59335] [PATCH 1/2] gnu: python-numexpr: Update to 2.8.4 Sharlatan Hellseher
2022-11-17 10:17   ` [bug#59335] [PATCH 2/2] gnu: python-sniffio: Update to 1.3.0 Sharlatan Hellseher
2022-12-01 21:47 ` [bug#59335] [PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests Ludovic Courtès
2022-12-05 22:05   ` Sharlatan Hellseher

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).