mbox

[PULL,00/15] Python patches

Message ID 20210701020921.1679468-1-jsnow@redhat.com
State New
Headers show

Pull-request

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

Message

John Snow July 1, 2021, 2:09 a.m. UTC
The following changes since commit d940d468e29bff5eb5669c0dd8f3de0c3de17bfb:

  Merge remote-tracking branch 'remotes/quic/tags/pull-hex-20210629' into staging (2021-06-30 19:09:45 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 5c02c865866fdd2d17e8f5507deb4aa1f74bf59f:

  python: Fix broken ReST docstrings (2021-06-30 21:57:08 -0400)

----------------------------------------------------------------
Pull request

Patch 01/15 fixes the check-python-tox test.

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

John Snow (15):
  python/qom: Do not use 'err' name at module scope
  python: expose typing information via PEP 561
  python: Remove global pylint suppressions
  python: Re-lock pipenv at *oldest* supported versions
  python: README.rst touchups
  python: Add no-install usage instructions
  python: rename 'venv-check' target to 'check-pipenv'
  python: update help text for check-tox
  python: Fix .PHONY Make specifiers
  python: only check qemu/ subdir with flake8
  python: add 'make check-dev' invocation
  python: Update help text on 'make check', 'make develop'
  python: Update help text on 'make clean', 'make distclean'
  python: remove auto-generated pyproject.toml file
  python: Fix broken ReST docstrings

 python/README.rst               |  47 ++++++++++---
 .gitlab-ci.d/static_checks.yml  |   2 +-
 python/.gitignore               |   1 +
 python/Makefile                 |  89 +++++++++++++++++++------
 python/Pipfile.lock             | 113 +++++++++++++++-----------------
 python/qemu/machine/__init__.py |   6 +-
 python/qemu/machine/machine.py  |   6 +-
 python/qemu/machine/py.typed    |   0
 python/qemu/machine/qtest.py    |   2 +
 python/qemu/qmp/__init__.py     |   1 +
 python/qemu/qmp/py.typed        |   0
 python/qemu/qmp/qom.py          |   4 +-
 python/qemu/qmp/qom_common.py   |   2 +-
 python/qemu/utils/accel.py      |   2 +-
 python/qemu/utils/py.typed      |   0
 python/setup.cfg                |  14 ++--
 python/tests/flake8.sh          |   2 +-
 17 files changed, 187 insertions(+), 104 deletions(-)
 create mode 100644 python/qemu/machine/py.typed
 create mode 100644 python/qemu/qmp/py.typed
 create mode 100644 python/qemu/utils/py.typed

Comments

Peter Maydell July 1, 2021, 7:28 p.m. UTC | #1
On Thu, 1 Jul 2021 at 03:09, John Snow <jsnow@redhat.com> wrote:
>
> The following changes since commit d940d468e29bff5eb5669c0dd8f3de0c3de17bfb:
>
>   Merge remote-tracking branch 'remotes/quic/tags/pull-hex-20210629' into staging (2021-06-30 19:09:45 +0100)
>
> are available in the Git repository at:
>
>   https://gitlab.com/jsnow/qemu.git tags/python-pull-request
>
> for you to fetch changes up to 5c02c865866fdd2d17e8f5507deb4aa1f74bf59f:
>
>   python: Fix broken ReST docstrings (2021-06-30 21:57:08 -0400)
>
> ----------------------------------------------------------------
> Pull request
>
> Patch 01/15 fixes the check-python-tox test.
>
> ----------------------------------------------------------------
>
> John Snow (15):
>   python/qom: Do not use 'err' name at module scope
>   python: expose typing information via PEP 561
>   python: Remove global pylint suppressions
>   python: Re-lock pipenv at *oldest* supported versions
>   python: README.rst touchups
>   python: Add no-install usage instructions
>   python: rename 'venv-check' target to 'check-pipenv'
>   python: update help text for check-tox
>   python: Fix .PHONY Make specifiers
>   python: only check qemu/ subdir with flake8
>   python: add 'make check-dev' invocation
>   python: Update help text on 'make check', 'make develop'
>   python: Update help text on 'make clean', 'make distclean'
>   python: remove auto-generated pyproject.toml file
>   python: Fix broken ReST docstrings
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/6.1
for any user-visible changes.

-- PMM