[PATCH RFC 04/10] python/mkvenv: bump 'qemu.qmp' dependency for testdeps

John Snow posted 10 patches 2 weeks, 2 days ago
Maintainers: "Alex Bennée" <alex.bennee@linaro.org>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Thomas Huth <thuth@redhat.com>, John Snow <jsnow@redhat.com>, Cleber Rosa <crosa@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Markus Armbruster <armbru@redhat.com>, Michael Roth <michael.roth@amd.com>, Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>
[PATCH RFC 04/10] python/mkvenv: bump 'qemu.qmp' dependency for testdeps
Posted by John Snow 2 weeks, 2 days ago
Firstly, there is a new v0.0.5 that should be used instead of
v0.0.3.

Secondly, the use of a period in the key name does not behave as
expected when installing and checking for dependencies, so use
underscore instead - which does indeed resolve to the same package.

Signed-off-by: John Snow <jsnow@redhat.com>
---
 pythondeps.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pythondeps.toml b/pythondeps.toml
index 98e99e79005..daf5a18989a 100644
--- a/pythondeps.toml
+++ b/pythondeps.toml
@@ -32,5 +32,5 @@ sphinx = { accepted = ">=3.4.3", installed = "6.2.1", canary = "sphinx-build" }
 sphinx_rtd_theme = { accepted = ">=0.5", installed = "1.2.2" }
 
 [testdeps]
-qemu.qmp = { accepted = ">=0.0.3", installed = "0.0.3" }
+qemu_qmp = { accepted = ">=0.0.5", installed = "0.0.5" }
 pygdbmi = { accepted = ">=0.11.0.0", installed = "0.11.0.0" }
-- 
2.51.0
Re: [PATCH RFC 04/10] python/mkvenv: bump 'qemu.qmp' dependency for testdeps
Posted by Thomas Huth 2 weeks, 1 day ago
On 28/10/2025 23.03, John Snow wrote:
> Firstly, there is a new v0.0.5 that should be used instead of
> v0.0.3.
> 
> Secondly, the use of a period in the key name does not behave as
> expected when installing and checking for dependencies, so use
> underscore instead - which does indeed resolve to the same package.
> 
> Signed-off-by: John Snow <jsnow@redhat.com>
> ---
>   pythondeps.toml | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/pythondeps.toml b/pythondeps.toml
> index 98e99e79005..daf5a18989a 100644
> --- a/pythondeps.toml
> +++ b/pythondeps.toml
> @@ -32,5 +32,5 @@ sphinx = { accepted = ">=3.4.3", installed = "6.2.1", canary = "sphinx-build" }
>   sphinx_rtd_theme = { accepted = ">=0.5", installed = "1.2.2" }
>   
>   [testdeps]
> -qemu.qmp = { accepted = ">=0.0.3", installed = "0.0.3" }
> +qemu_qmp = { accepted = ">=0.0.5", installed = "0.0.5" }
>   pygdbmi = { accepted = ">=0.11.0.0", installed = "0.11.0.0" }

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