First up, use the newest v0.0.5 instead of the older 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 quote this string instead.
Signed-off-by: John Snow <[email protected]> --- pythondeps.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythondeps.toml b/pythondeps.toml index 98e99e79005..1657953ff65 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.1
