[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 04/27] mkvenv: add better error message for missing pyexpat modul
|
From: |
John Snow |
|
Subject: |
[PATCH 04/27] mkvenv: add better error message for missing pyexpat module |
|
Date: |
Wed, 10 May 2023 23:54:12 -0400 |
NetBSD debundles pyexpat from python, but ensurepip needs pyexpat. Try
our best to offer a helpful error message instead of just failing
catastrophically.
Signed-off-by: John Snow <jsnow@redhat.com>
---
python/scripts/mkvenv.py | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/python/scripts/mkvenv.py b/python/scripts/mkvenv.py
index ce52b55976..dbcd488c12 100644
--- a/python/scripts/mkvenv.py
+++ b/python/scripts/mkvenv.py
@@ -118,7 +118,10 @@ def check_ensurepip(with_pip: bool) -> None:
Raise a fatal exception with a helpful hint if it isn't available.
"""
- if with_pip and not find_spec("ensurepip"):
+ if not with_pip:
+ return
+
+ if not find_spec("ensurepip"):
msg = (
"Python's ensurepip module is not found.\n"
"It's normally part of the Python standard library, "
@@ -130,6 +133,19 @@ def check_ensurepip(with_pip: bool) -> None:
)
raise Ouch(msg)
+ # ensurepip uses pyexpat, which can also go missing on us:
+ if not find_spec("pyexpat"):
+ msg = (
+ "Python's pyexpat module is not found.\n"
+ "It's normally part of the Python standard library, "
+ "maybe your distribution packages it separately?\n"
+ "Either install pyexpat, or alleviate the need for it in the "
+ "first place by installing pip and setuptools for "
+ f"'{sys.executable}'.\n\n"
+ "(Hint: NetBSD's pkgsrc debundles this to e.g. 'py310-expat'.)"
+ )
+ raise Ouch(msg)
+
def make_venv( # pylint: disable=too-many-arguments
env_dir: Union[str, Path],
--
2.40.0
- [PATCH 00/27] configure: create a python venv and ensure meson, sphinx, John Snow, 2023/05/10
- [PATCH 04/27] mkvenv: add better error message for missing pyexpat module,
John Snow <=
- [PATCH 01/27] python: shut up "pip install" during "make check-minreqs", John Snow, 2023/05/10
- [PATCH 03/27] python: add mkvenv.py, John Snow, 2023/05/10
- [PATCH 02/27] python: update pylint configuration, John Snow, 2023/05/10
- [PATCH 05/27] mkvenv: add nested venv workaround, John Snow, 2023/05/10
- [PATCH 06/27] mkvenv: add ensure subcommand, John Snow, 2023/05/10
- [PATCH 08/27] mkvenv: add console script entry point generation, John Snow, 2023/05/10
- [PATCH 07/27] mkvenv: add diagnose() method for ensure() failures, John Snow, 2023/05/10