Skip to content

Commit

Permalink
.github/workflows/test_python_pip.yml: fix failure on windows.
Browse files Browse the repository at this point in the history
We need to install setuptools before running scripts/wrap/__main__.py, because
is is required when importing pipcl.py.
  • Loading branch information
julian-smith-artifex-com committed Oct 23, 2023
1 parent 70e8778 commit 092ab73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test_python_pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 092ab73

Please sign in to comment.