Use python3

This commit is contained in:
Andrew Murray 2022-04-18 12:53:55 +10:00
parent a33dc56560
commit e8b2b9baca
2 changed files with 3 additions and 3 deletions

View File

@ -43,8 +43,8 @@ jobs:
- name: Print build system information - name: Print build system information
run: python .github/workflows/system-info.py run: python .github/workflows/system-info.py
- name: python -m pip install wheel pytest pytest-cov pytest-timeout defusedxml - name: python3 -m pip install wheel pytest pytest-cov pytest-timeout defusedxml
run: python -m pip install wheel pytest pytest-cov pytest-timeout defusedxml run: python3 -m pip install wheel pytest pytest-cov pytest-timeout defusedxml
- name: Install dependencies - name: Install dependencies
id: install id: install

View File

@ -91,7 +91,7 @@ Some binary dependencies (e.g. ``fribidi.dll``) will be stored in the
``winbuild\build\bin`` directory; this directory should be added to ``PATH`` ``winbuild\build\bin`` directory; this directory should be added to ``PATH``
before running tests. before running tests.
Build and install Pillow, then run ``python -m pytest Tests`` Build and install Pillow, then run ``python3 -m pytest Tests``
from the root Pillow directory. from the root Pillow directory.
Example Example