[PATCH 3/7] scripts/vendor.py: add pycotap

Marc-André Lureau posted 7 patches 1 month, 4 weeks ago
Maintainers: Gerd Hoffmann <kraxel@redhat.com>, "Marc-André Lureau" <marcandre.lureau@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, "Daniel P. Berrangé" <berrange@redhat.com>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, John Snow <jsnow@redhat.com>, Cleber Rosa <crosa@redhat.com>
[PATCH 3/7] scripts/vendor.py: add pycotap
Posted by Marc-André Lureau 1 month, 4 weeks ago
Related to commit 5ec1eec11000ef118b2a87c330245ffaa475f5ee ("python:
Install pycotap in our venv if necessary")

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 python/scripts/vendor.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/python/scripts/vendor.py b/python/scripts/vendor.py
index 33b9b0b92b7..9a7175d3cc4 100755
--- a/python/scripts/vendor.py
+++ b/python/scripts/vendor.py
@@ -43,6 +43,8 @@ def main() -> int:
     packages = {
         "meson==1.10.0":
         "4b27aafce281e652dcb437b28007457411245d975c48b5db3a797d3e93ae1585",
+        "pycotap==1.3.1":
+        "1c3a25b3ff89e48f4e00f1f71dbbc1642b4f65c65d416524d07e73492fff25ea",
     }
 
     vendor_dir = Path(__file__, "..", "..", "wheels").resolve()

-- 
2.52.0


Re: [PATCH 3/7] scripts/vendor.py: add pycotap
Posted by Thomas Huth 1 month, 4 weeks ago
On 11/02/2026 11.01, Marc-André Lureau wrote:
> Related to commit 5ec1eec11000ef118b2a87c330245ffaa475f5ee ("python:
> Install pycotap in our venv if necessary")
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
>   python/scripts/vendor.py | 2 ++
>   1 file changed, 2 insertions(+)
> 
> diff --git a/python/scripts/vendor.py b/python/scripts/vendor.py
> index 33b9b0b92b7..9a7175d3cc4 100755
> --- a/python/scripts/vendor.py
> +++ b/python/scripts/vendor.py
> @@ -43,6 +43,8 @@ def main() -> int:
>       packages = {
>           "meson==1.10.0":
>           "4b27aafce281e652dcb437b28007457411245d975c48b5db3a797d3e93ae1585",
> +        "pycotap==1.3.1":
> +        "1c3a25b3ff89e48f4e00f1f71dbbc1642b4f65c65d416524d07e73492fff25ea",
>       }

This will have a (trivial) conflict with:

  https://lore.kernel.org/qemu-devel/20260209184124.1263625-10-jsnow@redhat.com/

Anyway,
Reviewed-by: Thomas Huth <thuth@redhat.com>