Re: [Qemu-devel] [RFC PATCH] remove numpy dependency

2017-11-07 Thread Stefan Hajnoczi
On Mon, Nov 06, 2017 at 07:35:55PM +0300, Joannah Nanjekye wrote: > Users tend to hit an ImportError when running analyze-migration.py due > to the numpy dependency. numpy functionality isn't actually used, just > binary serialization that the standard library 'struct' module already > provides.

Re: [Qemu-devel] [RFC PATCH] remove numpy dependency

2017-11-06 Thread no-reply
Hi, This series seems to have some coding style problems. See output below for more information: Subject: [Qemu-devel] [RFC PATCH] remove numpy dependency Type: series Message-id: 1509986155-4735-1-git-send-email-nanjekyejoan...@gmail.com === TEST SCRIPT BEGIN === #!/bin/bash BASE=base n=1

[Qemu-devel] [RFC PATCH] remove numpy dependency

2017-11-06 Thread Joannah Nanjekye
Users tend to hit an ImportError when running analyze-migration.py due to the numpy dependency. numpy functionality isn't actually used, just binary serialization that the standard library 'struct' module already provides. Removing the dependency allows the script to run out-of-the-box. Signed-o