Skip to content

Commit 092ab73

Browse files
.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.
1 parent 70e8778 commit 092ab73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test_python_pip.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
command += f' && ./{venv_name}/Scripts/activate'.replace('/', os.sep)
5353
else:
5454
command += f' && . {venv_name}/bin/activate'
55-
command += f' && python -m pip install -U pip'
55+
command += f' && python -m pip install -U pip setuptools'
5656
command += f' && python -m pip install -vv .'
5757
command += f' && python scripts/mupdfwrap.py -d - --test-python'
5858

0 commit comments

Comments
 (0)