qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 0/6] Python patches
@ 2025-05-19 17:00 John Snow
  2025-05-19 17:00 ` [PULL 1/6] qapi: Add some pylint ignores John Snow
                   ` (7 more replies)
  0 siblings, 8 replies; 16+ messages in thread
From: John Snow @ 2025-05-19 17:00 UTC (permalink / raw)
  To: qemu-devel
  Cc: Cleber Rosa, Michael Roth, John Snow, Markus Armbruster,
	Peter Maydell

The following changes since commit 757a34115e7491744a63dfc3d291fd1de5297ee2:

  Merge tag 'pull-nvme-20250515' of https://gitlab.com/birkelund/qemu into staging (2025-05-15 13:42:27 -0400)

are available in the Git repository at:

  https://gitlab.com/jsnow/qemu.git tags/python-pull-request

for you to fetch changes up to 818060c02a53df4b27bc86cbac3a26009996b6a4:

  qapi: delete un-needed python static analysis configs (2025-05-19 12:44:01 -0400)

----------------------------------------------------------------
Python PR

Add scripts/qapi and docs/sphinx/*qapi* to the Python static analysis checks

----------------------------------------------------------------

John Snow (5):
  qapi: Add some pylint ignores
  docs/qapidoc: linting fixes
  python: update missing dependencies from minreqs
  python: add qapi static analysis tests
  qapi: delete un-needed python static analysis configs

Markus Armbruster (1):
  python: Drop redundant warn_unused_configs = True

 docs/sphinx/qapi_domain.py  | 25 ++++++++++++++-----------
 docs/sphinx/qapidoc.py      |  5 +++--
 python/setup.cfg            |  2 +-
 python/tests/minreqs.txt    | 25 +++++++++++++++++++++++++
 python/tests/qapi-flake8.sh |  4 ++++
 python/tests/qapi-isort.sh  |  6 ++++++
 python/tests/qapi-mypy.sh   |  2 ++
 python/tests/qapi-pylint.sh |  6 ++++++
 scripts/qapi/.flake8        |  3 ---
 scripts/qapi/.isort.cfg     |  7 -------
 scripts/qapi/backend.py     |  2 ++
 scripts/qapi/mypy.ini       |  4 ----
 scripts/qapi/pylintrc       |  1 +
 13 files changed, 64 insertions(+), 28 deletions(-)
 create mode 100755 python/tests/qapi-flake8.sh
 create mode 100755 python/tests/qapi-isort.sh
 create mode 100755 python/tests/qapi-mypy.sh
 create mode 100755 python/tests/qapi-pylint.sh
 delete mode 100644 scripts/qapi/.flake8
 delete mode 100644 scripts/qapi/.isort.cfg
 delete mode 100644 scripts/qapi/mypy.ini

-- 
2.48.1




^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PULL 0/6] Python patches
@ 2024-07-15 17:32 John Snow
  2024-07-15 23:39 ` Richard Henderson
  0 siblings, 1 reply; 16+ messages in thread
From: John Snow @ 2024-07-15 17:32 UTC (permalink / raw)
  To: qemu-devel
  Cc: Markus Armbruster, Joel Stanley, Christian Borntraeger,
	Leonardo Bras, Halil Pasic, qemu-block, Eduardo Habkost,
	Vladimir Sementsov-Ogievskiy, Cleber Rosa, qemu-arm,
	Fabiano Rosas, Hanna Reitz, qemu-s390x,
	Wainer dos Santos Moschetta, John Snow, Cédric Le Goater,
	Michael Roth, Aurelien Jarno, Andrew Jeffery, Michael S. Tsirkin,
	Alex Bennée, Beraldo Leal, Eric Farman, Peter Maydell,
	Philippe Mathieu-Daudé, Paolo Bonzini, Ani Sinha,
	Juan Quintela, Eric Blake, Vladimir Sementsov-Ogievskiy,
	Thomas Huth, Kevin Wolf, Peter Xu

The following changes since commit 4469bee2c529832d762af4a2f89468c926f02fe4:

  Merge tag 'nvme-next-pull-request' of https://gitlab.com/birkelund/qemu into staging (2024-07-11 14:32:51 -0700)

are available in the Git repository at:

  https://gitlab.com/jsnow/qemu.git tags/python-pull-request

for you to fetch changes up to dd23f9ec519db9c424223cff8767715de5532718:

  docs: remove Sphinx 1.x compatibility code (2024-07-12 16:46:21 -0400)

----------------------------------------------------------------
Python: 3.13 compat & sphinx minver bump

----------------------------------------------------------------

John Snow (6):
  python: linter changes for pylint 3.x
  python: Do not use pylint 3.2.4 with python 3.8
  iotests: Change imports for Python 3.13
  python: enable testing for 3.13
  Python: bump minimum sphinx version to 3.4.3
  docs: remove Sphinx 1.x compatibility code

 docs/conf.py                           |  7 ++---
 docs/sphinx/hxtool.py                  | 21 +++-----------
 docs/sphinx/kerneldoc.py               | 38 ++++++++------------------
 docs/sphinx/kernellog.py               | 28 -------------------
 docs/sphinx/qapidoc.py                 | 33 ++--------------------
 python/qemu/machine/machine.py         |  1 +
 python/qemu/utils/qemu_ga_client.py    |  2 +-
 python/setup.cfg                       |  4 ++-
 pythondeps.toml                        |  2 +-
 tests/docker/dockerfiles/python.docker |  1 +
 tests/qemu-iotests/testenv.py          |  7 ++++-
 tests/qemu-iotests/testrunner.py       |  9 ++++--
 12 files changed, 41 insertions(+), 112 deletions(-)
 delete mode 100644 docs/sphinx/kernellog.py

-- 
2.45.0




^ permalink raw reply	[flat|nested] 16+ messages in thread
* [PULL 0/6] Python patches
@ 2022-02-23 22:08 John Snow
  2022-02-25 11:27 ` Peter Maydell
  0 siblings, 1 reply; 16+ messages in thread
From: John Snow @ 2022-02-23 22:08 UTC (permalink / raw)
  To: qemu-devel
  Cc: Kevin Wolf, Peter Maydell, Beraldo Leal, qemu-block,
	Markus Armbruster, Eduardo Habkost, Hanna Reitz, Cleber Rosa,
	John Snow

The following changes since commit 31e3caf21b6cdf54d11f3744b8b341f07a30b5d7:

  Merge remote-tracking branch 'remotes/lvivier-gitlab/tags/trivial-branch-for-7.0-pull-request' into staging (2022-02-22 20:17:09 +0000)

are available in the Git repository at:

  https://gitlab.com/jsnow/qemu.git tags/python-pull-request

for you to fetch changes up to 89d38c74f4b69a93696392b55a9fee573055d78b:

  MAINTAINERS: python - remove ehabkost and add bleal (2022-02-23 17:07:26 -0500)

----------------------------------------------------------------
Python patches

New functionality in qmp-shell from Dan, and some packaging fixes.

----------------------------------------------------------------

Daniel P. Berrangé (2):
  python: introduce qmp-shell-wrap convenience tool
  python: support recording QMP session to a file

John Snow (4):
  Python: discourage direct setup.py install
  Python: add setuptools v60.0 workaround
  Revert "python: pin setuptools below v60.0.0"
  MAINTAINERS: python - remove ehabkost and add bleal

 MAINTAINERS                    |  4 +-
 python/Makefile                |  2 -
 python/qemu/aqmp/qmp_shell.py  | 86 +++++++++++++++++++++++++++++++---
 python/setup.cfg               |  5 +-
 python/setup.py                | 19 +++++++-
 python/tests/iotests-pylint.sh |  3 +-
 python/tests/pylint.sh         |  3 +-
 scripts/qmp/qmp-shell-wrap     | 11 +++++
 8 files changed, 118 insertions(+), 15 deletions(-)
 create mode 100755 scripts/qmp/qmp-shell-wrap

-- 
2.34.1




^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2025-05-27 15:03 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-19 17:00 [PULL 0/6] Python patches John Snow
2025-05-19 17:00 ` [PULL 1/6] qapi: Add some pylint ignores John Snow
2025-05-19 17:00 ` [PULL 2/6] docs/qapidoc: linting fixes John Snow
2025-05-19 17:00 ` [PULL 3/6] python: update missing dependencies from minreqs John Snow
2025-05-19 17:00 ` [PULL 4/6] python: add qapi static analysis tests John Snow
2025-05-19 17:00 ` [PULL 5/6] python: Drop redundant warn_unused_configs = True John Snow
2025-05-19 17:00 ` [PULL 6/6] qapi: delete un-needed python static analysis configs John Snow
2025-05-19 21:17 ` [PULL 0/6] Python patches Stefan Hajnoczi
2025-05-23 17:38   ` John Snow
2025-05-23 19:03     ` Stefan Hajnoczi
2025-05-23 19:45 ` Stefan Hajnoczi
2025-05-27 15:01   ` John Snow
  -- strict thread matches above, loose matches on Subject: below --
2024-07-15 17:32 John Snow
2024-07-15 23:39 ` Richard Henderson
2022-02-23 22:08 John Snow
2022-02-25 11:27 ` Peter Maydell

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).