From: Stefan Hajnoczi <stefanha@gmail.com>
To: Paolo Bonzini <pbonzini@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [PULL 00/14] Python, i386 changes for 2023-08-28
Date: Tue, 29 Aug 2023 09:43:53 -0400 [thread overview]
Message-ID: <CAJSP0QUKoDBqQ8yhMdxLS_qN=c0umYHi7YemeE3VLbR5MYF5xw@mail.gmail.com> (raw)
In-Reply-To: <20230828103856.46031-1-pbonzini@redhat.com>
Hi Paolo,
I see a new test error that may have been introduced by this pull request:
https://gitlab.com/qemu-project/qemu/-/jobs/4968468877#L131
AVOCADO Downloading avocado tests VM image for s390x
Failed to load plugin from module "avocado.plugins.journal":
ImportError("Module 'sqlite3' is not installed.\nUse:\n sudo zypper
install python311\nto install it.") :
File "/builds/qemu-project/qemu/build/pyvenv/lib64/python3.11/site-packages/avocado/core/extension_manager.py",
line 63, in __init__
plugin = ep.load()
^^^^^^^^^
File "/usr/lib/python3.11/site-packages/pkg_resources/__init__.py",
line 2517, in load
return self.resolve()
^^^^^^^^^^^^^^
File "/usr/lib/python3.11/site-packages/pkg_resources/__init__.py",
line 2523, in resolve
module = __import__(self.module_name, fromlist=['__name__'], level=0)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/builds/qemu-project/qemu/build/pyvenv/lib64/python3.11/site-packages/avocado/plugins/journal.py",
line 19, in <module>
import sqlite3
File "/usr/lib64/python3.11/_import_failed/sqlite3.py", line 16, in <module>
Stefan
On Mon, 28 Aug 2023 at 06:41, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit 50e7a40af372ee5931c99ef7390f5d3d6fbf6ec4:
>
> Merge tag 'pull-target-arm-20230824' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2023-08-24 10:08:33 -0400)
>
> are available in the Git repository at:
>
> https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to 29a8238510df27080b0ffa92c58400412ce19daa:
>
> configure: remove unnecessary mkdir -p (2023-08-28 10:01:44 +0200)
>
> ----------------------------------------------------------------
> * separate accepted and auto-installed versions of Python dependencies
> * bump tricore container to Debian 11
> * small configure cleanups
>
> ----------------------------------------------------------------
> Ake Koomsin (1):
> target/i386: add support for VMX_SECONDARY_EXEC_ENABLE_USER_WAIT_PAUSE
>
> Paolo Bonzini (13):
> configure: fix and complete detection of tricore tools
> dockerfiles: bump tricore cross compiler container to Debian 11
> python: mkvenv: tweak the matching of --diagnose to depspecs
> python: mkvenv: introduce TOML-like representation of dependencies
> python: mkvenv: add ensuregroup command
> lcitool: bump libvirt-ci submodule and regenerate
> configure: never use PyPI for Meson
> python: use vendored tomli
> configure: switch to ensuregroup
> Revert "tests: Use separate virtual environment for avocado"
> tests/docker: add python3-tomli dependency to containers
> configure: fix container_hosts misspellings and duplications
> configure: remove unnecessary mkdir -p
>
> .gitlab-ci.d/buildtest.yml | 6 +-
> .gitlab-ci.d/cirrus/freebsd-13.vars | 2 +-
> .gitlab-ci.d/cirrus/macos-12.vars | 2 +-
> configure | 31 +---
> docs/devel/acpi-bits.rst | 6 +-
> docs/devel/testing.rst | 14 +-
> python/scripts/mkvenv.py | 201 +++++++++++++++++++--
> python/scripts/vendor.py | 5 +-
> python/setup.cfg | 6 +
> python/wheels/tomli-2.0.1-py3-none-any.whl | Bin 0 -> 12757 bytes
> pythondeps.toml | 32 ++++
> scripts/ci/org.centos/stream/8/x86_64/test-avocado | 4 +-
> scripts/device-crash-test | 2 +-
> target/i386/cpu.c | 6 +-
> target/i386/cpu.h | 1 +
> tests/Makefile.include | 19 +-
> tests/docker/dockerfiles/centos8.docker | 3 +-
> .../dockerfiles/debian-all-test-cross.docker | 7 +-
> tests/docker/dockerfiles/debian-amd64-cross.docker | 6 +-
> tests/docker/dockerfiles/debian-amd64.docker | 4 +
> tests/docker/dockerfiles/debian-arm64-cross.docker | 6 +-
> tests/docker/dockerfiles/debian-armel-cross.docker | 6 +-
> tests/docker/dockerfiles/debian-armhf-cross.docker | 6 +-
> .../docker/dockerfiles/debian-hexagon-cross.docker | 6 +-
> .../dockerfiles/debian-mips64el-cross.docker | 6 +-
> .../docker/dockerfiles/debian-mipsel-cross.docker | 6 +-
> .../docker/dockerfiles/debian-ppc64el-cross.docker | 6 +-
> .../docker/dockerfiles/debian-riscv64-cross.docker | 2 +-
> tests/docker/dockerfiles/debian-s390x-cross.docker | 6 +-
> .../docker/dockerfiles/debian-tricore-cross.docker | 4 +-
> tests/docker/dockerfiles/fedora-i386-cross.docker | 1 +
> tests/docker/dockerfiles/fedora-win32-cross.docker | 2 +-
> tests/docker/dockerfiles/fedora-win64-cross.docker | 2 +-
> tests/docker/dockerfiles/opensuse-leap.docker | 22 +--
> tests/docker/dockerfiles/ubuntu2004.docker | 4 +-
> tests/docker/dockerfiles/ubuntu2204.docker | 1 +
> tests/lcitool/libvirt-ci | 2 +-
> tests/lcitool/mappings.yml | 28 ++-
> tests/lcitool/projects/qemu.yml | 3 +-
> tests/lcitool/targets/opensuse-leap-15.yml | 4 +-
> tests/requirements.txt | 6 -
> tests/vm/Makefile.include | 2 +-
> tests/vm/generated/freebsd.json | 1 +
> 43 files changed, 377 insertions(+), 112 deletions(-)
> create mode 100644 python/wheels/tomli-2.0.1-py3-none-any.whl
> create mode 100644 pythondeps.toml
> delete mode 100644 tests/requirements.txt
> --
> 2.41.0
>
>
prev parent reply other threads:[~2023-08-29 13:45 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-28 10:38 [PULL 00/14] Python, i386 changes for 2023-08-28 Paolo Bonzini
2023-08-28 10:38 ` [PULL 01/14] configure: fix and complete detection of tricore tools Paolo Bonzini
2023-08-28 10:38 ` [PULL 02/14] dockerfiles: bump tricore cross compiler container to Debian 11 Paolo Bonzini
2023-08-28 10:38 ` [PULL 03/14] python: mkvenv: tweak the matching of --diagnose to depspecs Paolo Bonzini
2023-08-28 10:38 ` [PULL 04/14] python: mkvenv: introduce TOML-like representation of dependencies Paolo Bonzini
2023-08-28 10:38 ` [PULL 05/14] python: mkvenv: add ensuregroup command Paolo Bonzini
2023-08-28 10:38 ` [PULL 06/14] lcitool: bump libvirt-ci submodule and regenerate Paolo Bonzini
2023-08-28 10:38 ` [PULL 07/14] configure: never use PyPI for Meson Paolo Bonzini
2023-08-28 10:38 ` [PULL 08/14] python: use vendored tomli Paolo Bonzini
2023-08-28 10:38 ` [PULL 09/14] configure: switch to ensuregroup Paolo Bonzini
2023-08-28 10:38 ` [PULL 10/14] Revert "tests: Use separate virtual environment for avocado" Paolo Bonzini
2023-08-28 10:38 ` [PULL 11/14] tests/docker: add python3-tomli dependency to containers Paolo Bonzini
2023-08-28 10:38 ` [PULL 12/14] target/i386: add support for VMX_SECONDARY_EXEC_ENABLE_USER_WAIT_PAUSE Paolo Bonzini
2023-08-28 10:38 ` [PULL 13/14] configure: fix container_hosts misspellings and duplications Paolo Bonzini
2023-08-28 10:38 ` [PULL 14/14] configure: remove unnecessary mkdir -p Paolo Bonzini
2023-08-28 21:14 ` [PULL 00/14] Python, i386 changes for 2023-08-28 Stefan Hajnoczi
2023-08-29 13:43 ` Stefan Hajnoczi [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAJSP0QUKoDBqQ8yhMdxLS_qN=c0umYHi7YemeE3VLbR5MYF5xw@mail.gmail.com' \
--to=stefanha@gmail.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).