* [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 ***
@ 2021-03-16 8:00 BonfaceKilz
2021-03-16 8:00 ` [bug#47184] [PATCH 1/1] gnu: python-numpy: Update to 1.20.1 BonfaceKilz
2021-03-16 13:18 ` [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 *** zimoun
0 siblings, 2 replies; 8+ messages in thread
From: BonfaceKilz @ 2021-03-16 8:00 UTC (permalink / raw)
To: 47183; +Cc: BonfaceKilz, efraim
Hi all! This patche updates python-numpy to v1.20.1 from 1.17.3. This update
is important since numpy has introduced type annotations which is very useful
for CI when using a type checking tool such as mypy.
BonfaceKilz (1):
gnu: python-numpy: Update to 1.20.1.
gnu/packages/python-xyz.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--
2.29.2
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#47184] [PATCH 1/1] gnu: python-numpy: Update to 1.20.1.
2021-03-16 8:00 [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 *** BonfaceKilz
@ 2021-03-16 8:00 ` BonfaceKilz
2021-03-16 13:18 ` [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 *** zimoun
1 sibling, 0 replies; 8+ messages in thread
From: BonfaceKilz @ 2021-03-16 8:00 UTC (permalink / raw)
To: 47184; +Cc: BonfaceKilz, efraim
* gnu/packages/python-xyz.scm (python-numpy): Update to 1.20.1.
---
gnu/packages/python-xyz.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a9fa391bb2..b7cfb9dede 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -88,7 +88,7 @@
;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
;;; Copyright © 2020 Tim Gesthuizen <tim.gesthuizen@yahoo.de>
-;;; Copyright © 2020 Bonface Munyoki Kilyungi <bonfacemunyoki@gmail.com>
+;;; Copyright © 2020, 2021 Bonface Munyoki Kilyungi <me@bonfacemunyoki.com>
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
;;; Copyright © 2020 Diego N. Barbato <dnbarbato@posteo.de>
;;; Copyright © 2020 Leo Prikler <leo.prikler@student.tugraz.at>
@@ -4585,7 +4585,7 @@ between language specification and implementation aspects.")
(define-public python-numpy
(package
(name "python-numpy")
- (version "1.17.3")
+ (version "1.20.1")
(source
(origin
(method url-fetch)
@@ -4594,7 +4594,7 @@ between language specification and implementation aspects.")
version "/numpy-" version ".tar.gz"))
(sha256
(base32
- "1ak9dmjja0q90a7fsxli51ypcwssh8c4pb6f8wkrsnf2xgdk6dy9"))))
+ "0vc4fr3429a1rrzfxbd05lifrh72bwcc5vavwlwr5jmlxdlivxcv"))))
(build-system python-build-system)
(inputs
`(("openblas" ,openblas)
--
2.29.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 ***
2021-03-16 8:00 [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 *** BonfaceKilz
2021-03-16 8:00 ` [bug#47184] [PATCH 1/1] gnu: python-numpy: Update to 1.20.1 BonfaceKilz
@ 2021-03-16 13:18 ` zimoun
2021-03-16 13:27 ` Efraim Flashner
1 sibling, 1 reply; 8+ messages in thread
From: zimoun @ 2021-03-16 13:18 UTC (permalink / raw)
To: BonfaceKilz; +Cc: 47183, Efraim Flashner
Hi,
On Tue, 16 Mar 2021 at 09:01, BonfaceKilz <me@bonfacemunyoki.com> wrote:
> Hi all! This patche updates python-numpy to v1.20.1 from 1.17.3. This update
> is important since numpy has introduced type annotations which is very useful
> for CI when using a type checking tool such as mypy.
I have not tried this one, but I have tried 1.19.4
<http://issues.guix.gnu.org/issue/45698> and I got some failure with
some dependants of Numpy. Have you checked that the update does not
break other packages?
Cheers,
simon
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 ***
2021-03-16 13:18 ` [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 *** zimoun
@ 2021-03-16 13:27 ` Efraim Flashner
2021-03-16 18:35 ` Bonface Munyoki K.
0 siblings, 1 reply; 8+ messages in thread
From: Efraim Flashner @ 2021-03-16 13:27 UTC (permalink / raw)
To: zimoun; +Cc: BonfaceKilz, 47183
[-- Attachment #1: Type: text/plain, Size: 876 bytes --]
On Tue, Mar 16, 2021 at 02:18:56PM +0100, zimoun wrote:
> Hi,
>
> On Tue, 16 Mar 2021 at 09:01, BonfaceKilz <me@bonfacemunyoki.com> wrote:
>
> > Hi all! This patche updates python-numpy to v1.20.1 from 1.17.3. This update
> > is important since numpy has introduced type annotations which is very useful
> > for CI when using a type checking tool such as mypy.
>
> I have not tried this one, but I have tried 1.19.4
> <http://issues.guix.gnu.org/issue/45698> and I got some failure with
> some dependants of Numpy. Have you checked that the update does not
> break other packages?
>
I found that matplotlib and scipy both had test failures.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 ***
2021-03-16 13:27 ` Efraim Flashner
@ 2021-03-16 18:35 ` Bonface Munyoki K.
2021-06-10 8:36 ` zimoun
0 siblings, 1 reply; 8+ messages in thread
From: Bonface Munyoki K. @ 2021-03-16 18:35 UTC (permalink / raw)
To: Efraim Flashner; +Cc: 47183, zimoun
[-- Attachment #1: Type: text/plain, Size: 963 bytes --]
Efraim Flashner <efraim@flashner.co.il> writes:
> On Tue, Mar 16, 2021 at 02:18:56PM +0100, zimoun wrote:
>> Hi,
>>
>> On Tue, 16 Mar 2021 at 09:01, BonfaceKilz <me@bonfacemunyoki.com> wrote:
>>
>> > Hi all! This patche updates python-numpy to v1.20.1 from 1.17.3. This update
>> > is important since numpy has introduced type annotations which is very useful
>> > for CI when using a type checking tool such as mypy.
>>
>> I have not tried this one, but I have tried 1.19.4
>> <http://issues.guix.gnu.org/issue/45698> and I got some failure with
>> some dependants of Numpy. Have you checked that the update does not
>> break other packages?
>>
>
> I found that matplotlib and scipy both had test failures.
Let me look into this and supply patches
accordingly!
--
Bonface M. K. D4F09EB110177E03C28E2FE1F5BBAE1E0392253F
Humble GNU Emacs User / Bearer of scheme-y parens
Curator: <https://upbookclub.com> / Twitter: @BonfaceKilz
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 865 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 ***
2021-03-16 18:35 ` Bonface Munyoki K.
@ 2021-06-10 8:36 ` zimoun
2021-06-14 6:54 ` Bonface Munyoki K.
0 siblings, 1 reply; 8+ messages in thread
From: zimoun @ 2021-06-10 8:36 UTC (permalink / raw)
To: Bonface Munyoki K.; +Cc: 47183, Efraim Flashner
Hi,
On Tue, 16 Mar 2021 at 21:35, Bonface Munyoki K. <me@bonfacemunyoki.com> wrote:
> Efraim Flashner <efraim@flashner.co.il> writes:
>> On Tue, Mar 16, 2021 at 02:18:56PM +0100, zimoun wrote:
>>> On Tue, 16 Mar 2021 at 09:01, BonfaceKilz <me@bonfacemunyoki.com> wrote:
>>>
>>> > Hi all! This patche updates python-numpy to v1.20.1 from 1.17.3. This
>>> > update
>>> > is important since numpy has introduced type annotations which is very
>>> > useful
>>> > for CI when using a type checking tool such as mypy.
>>>
>>> I have not tried this one, but I have tried 1.19.4
>>> <http://issues.guix.gnu.org/issue/45698> and I got some failure with
>>> some dependants of Numpy. Have you checked that the update does not
>>> break other packages?
>>>
>> I found that matplotlib and scipy both had test failures.
>
> Let me look into this and supply patches
> accordingly!
I propose to close this one in favor of patch#48703. WDYT?
Cheers,
simon
<http://issues.guix.gnu.org/issue/48703>
^ permalink raw reply [flat|nested] 8+ messages in thread
* [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 ***
2021-06-10 8:36 ` zimoun
@ 2021-06-14 6:54 ` Bonface Munyoki K.
2021-06-16 5:34 ` bug#47183: " zimoun
0 siblings, 1 reply; 8+ messages in thread
From: Bonface Munyoki K. @ 2021-06-14 6:54 UTC (permalink / raw)
To: zimoun; +Cc: 47183, Efraim Flashner
[-- Attachment #1: Type: text/plain, Size: 1353 bytes --]
Ola o/
zimoun <zimon.toutoune@gmail.com> anaandika:
> Hi,
>
> On Tue, 16 Mar 2021 at 21:35, Bonface Munyoki K. <me@bonfacemunyoki.com> wrote:
>> Efraim Flashner <efraim@flashner.co.il> writes:
>>> On Tue, Mar 16, 2021 at 02:18:56PM +0100, zimoun wrote:
>>>> On Tue, 16 Mar 2021 at 09:01, BonfaceKilz <me@bonfacemunyoki.com> wrote:
>>>>
>>>> > Hi all! This patche updates python-numpy to v1.20.1 from 1.17.3. This
>>>> > update
>>>> > is important since numpy has introduced type annotations which is very
>>>> > useful
>>>> > for CI when using a type checking tool such as mypy.
>>>>
>>>> I have not tried this one, but I have tried 1.19.4
>>>> <http://issues.guix.gnu.org/issue/45698> and I got some failure with
>>>> some dependants of Numpy. Have you checked that the update does not
>>>> break other packages?
>>>>
>>> I found that matplotlib and scipy both had test failures.
>>
>> Let me look into this and supply patches
>> accordingly!
>
> I propose to close this one in favor of patch#48703. WDYT?
>
I agree! The patches build for me! \m/\m/
> Cheers,
> simon
>
> <http://issues.guix.gnu.org/issue/48703>
--
Bonface M. K. D4F09EB110177E03C28E2FE1F5BBAE1E0392253F
Free Software Activist
Humble GNU Emacs User | Bearer of scheme-y parens
Curator: <https://upbookclub.com> | Twitter: @BonfaceKilz
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 865 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#47183: [PATCH 0/1] *** Numpy Update to v1.20.1 ***
2021-06-14 6:54 ` Bonface Munyoki K.
@ 2021-06-16 5:34 ` zimoun
0 siblings, 0 replies; 8+ messages in thread
From: zimoun @ 2021-06-16 5:34 UTC (permalink / raw)
To: Bonface Munyoki K.; +Cc: 47183-done, Efraim Flashner
Hi,
On Mon, 14 Jun 2021 at 09:54, Bonface Munyoki K. <me@bonfacemunyoki.com> wrote:
> zimoun <zimon.toutoune@gmail.com> anaandika:
>> I propose to close this one in favor of patch#48703. WDYT?
>
> I agree! The patches build for me! \m/\m/
Therefore, close in favor of patch#48703.
Thanks,
simon
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2021-06-16 5:38 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-16 8:00 [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 *** BonfaceKilz
2021-03-16 8:00 ` [bug#47184] [PATCH 1/1] gnu: python-numpy: Update to 1.20.1 BonfaceKilz
2021-03-16 13:18 ` [bug#47183] [PATCH 0/1] *** Numpy Update to v1.20.1 *** zimoun
2021-03-16 13:27 ` Efraim Flashner
2021-03-16 18:35 ` Bonface Munyoki K.
2021-06-10 8:36 ` zimoun
2021-06-14 6:54 ` Bonface Munyoki K.
2021-06-16 5:34 ` bug#47183: " zimoun
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.