summary refs log tree commit diff stats
path: root/python/setup.cfg
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2023-01-05 16:59:22 +0000
committerPeter Maydell <peter.maydell@linaro.org>2023-01-05 16:59:22 +0000
commitd1852caab131ea898134fdcea8c14bc2ee75fbe9 (patch)
tree36101f6d1d24bc4a222f993d4ac3d8008b2ffb38 /python/setup.cfg
parentf8af61fa14441e67300176a5e07671ea395426b3 (diff)
parent519f3cfce07a067971ff39d4a989b77e7100a947 (diff)
downloadfocaccia-qemu-d1852caab131ea898134fdcea8c14bc2ee75fbe9.tar.gz
focaccia-qemu-d1852caab131ea898134fdcea8c14bc2ee75fbe9.zip
Merge tag 'python-pull-request' of https://gitlab.com/jsnow/qemu into staging
Python patch roundup

Mostly CI fixes and some small debugging improvements.

# gpg: Signature made Wed 04 Jan 2023 21:04:26 GMT
# gpg:                using RSA key F9B7ABDBBCACDF95BE76CBD07DEF8106AAFC390E
# gpg: Good signature from "John Snow (John Huston) <jsnow@redhat.com>" [full]
# Primary key fingerprint: FAEB 9711 A12C F475 812F  18F2 88A9 064D 1835 61EB
#      Subkey fingerprint: F9B7 ABDB BCAC DF95 BE76  CBD0 7DEF 8106 AAFC 390E

* tag 'python-pull-request' of https://gitlab.com/jsnow/qemu:
  python: add 3.11 to supported list
  iotests/check: Fix typing for sys.exit() value
  Python: fix flake8 config
  python/machine: Handle termination cases without QMP
  python/machine: Add debug logging to key state changes

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'python/setup.cfg')
-rw-r--r--python/setup.cfg6
1 files changed, 4 insertions, 2 deletions
diff --git a/python/setup.cfg b/python/setup.cfg
index c2c61c7519..5641815706 100644
--- a/python/setup.cfg
+++ b/python/setup.cfg
@@ -19,6 +19,7 @@ classifiers =
     Programming Language :: Python :: 3.8
     Programming Language :: Python :: 3.9
     Programming Language :: Python :: 3.10
+    Programming Language :: Python :: 3.11
     Typing :: Typed
 
 [options]
@@ -71,7 +72,8 @@ console_scripts =
     qmp-tui = qemu.qmp.qmp_tui:main [tui]
 
 [flake8]
-extend-ignore = E722  # Prefer pylint's bare-except checks to flake8's
+# Prefer pylint's bare-except checks to flake8's
+extend-ignore = E722
 exclude = __pycache__,
 
 [mypy]
@@ -158,7 +160,7 @@ multi_line_output=3
 # of python available on your system to run this test.
 
 [tox:tox]
-envlist = py36, py37, py38, py39, py310
+envlist = py36, py37, py38, py39, py310, py311
 skip_missing_interpreters = true
 
 [testenv]