[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 25/27] mkvenv: mark command as required
|
From: |
John Snow |
|
Subject: |
[PATCH 25/27] mkvenv: mark command as required |
|
Date: |
Wed, 10 May 2023 23:54:33 -0400 |
From: Paolo Bonzini <pbonzini@redhat.com>
This is only available in Python 3.7+.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/scripts/mkvenv.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/python/scripts/mkvenv.py b/python/scripts/mkvenv.py
index 31193b3b22..8e097e4759 100644
--- a/python/scripts/mkvenv.py
+++ b/python/scripts/mkvenv.py
@@ -856,6 +856,7 @@ def main() -> int:
subparsers = parser.add_subparsers(
title="Commands",
dest="command",
+ required=True,
metavar="command",
help="Description",
)
--
2.40.0
- [PATCH 14/27] python: add vendor.py utility, (continued)
- [PATCH 14/27] python: add vendor.py utility, John Snow, 2023/05/10
- [PATCH 15/27] configure: create a python venv unconditionally, John Snow, 2023/05/10
- [PATCH 17/27] configure: use 'mkvenv ensure meson' to bootstrap meson, John Snow, 2023/05/10
- [PATCH 19/27] tests: Use configure-provided pyvenv for tests, John Snow, 2023/05/10
- [PATCH 20/27] configure: move --enable-docs and --disable-docs back to configure, John Snow, 2023/05/10
- [PATCH 10/27] mkvenv: work around broken pip installations on Debian 10, John Snow, 2023/05/10
- [PATCH 18/27] qemu.git: drop meson git submodule, John Snow, 2023/05/10
- [PATCH 21/27] configure: bootstrap sphinx with mkvenv, John Snow, 2023/05/10
- [PATCH 23/27] Python: Drop support for Python 3.6, John Snow, 2023/05/10
- [PATCH 22/27] configure: add --enable-pypi and --disable-pypi, John Snow, 2023/05/10
- [PATCH 25/27] mkvenv: mark command as required,
John Snow <=
- [PATCH 24/27] configure: Add courtesy hint to Python version failure message, John Snow, 2023/05/10
- [PATCH 26/27] python: bump some of the dependencies, John Snow, 2023/05/10
- [PATCH 27/27] mkvenv.py: experiment; use distlib to generate script entry points, John Snow, 2023/05/10
[PATCH 16/27] python/wheels: add vendored meson package, John Snow, 2023/05/10