From 092ab730f152734dd668a1913b7b50e31b29e630 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Mon, 23 Oct 2023 18:09:51 +0100 Subject: [PATCH] .github/workflows/test_python_pip.yml: fix failure on windows. We need to install setuptools before running scripts/wrap/__main__.py, because is is required when importing pipcl.py. --- .github/workflows/test_python_pip.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_python_pip.yml b/.github/workflows/test_python_pip.yml index 5cd0f5814..64dced373 100644 --- a/.github/workflows/test_python_pip.yml +++ b/.github/workflows/test_python_pip.yml @@ -52,7 +52,7 @@ jobs: command += f' && ./{venv_name}/Scripts/activate'.replace('/', os.sep) else: command += f' && . {venv_name}/bin/activate' - command += f' && python -m pip install -U pip' + command += f' && python -m pip install -U pip setuptools' command += f' && python -m pip install -vv .' command += f' && python scripts/mupdfwrap.py -d - --test-python'