GNU bug report logs -
#59335
[PATCH 0/2]: python-numexpr and python-sniffio: Update version, enable tests
Previous Next
To reply to this bug, email your comments to 59335 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
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):
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):
* 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):
* 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):
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):
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 349 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.