Skip to content

Commit 31b98bb

Browse files
authored
Merge pull request #6222 from radarhere/python3
Use python3
2 parents 1c810be + 2356034 commit 31b98bb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
cache-dependency-path: ".github/workflows/test-windows.yml"
4242

4343
- name: Print build system information
44-
run: python .github/workflows/system-info.py
44+
run: python3 .github/workflows/system-info.py
4545

46-
- name: python -m pip install wheel pytest pytest-cov pytest-timeout defusedxml
47-
run: python -m pip install wheel pytest pytest-cov pytest-timeout defusedxml
46+
- name: python3 -m pip install wheel pytest pytest-cov pytest-timeout defusedxml
47+
run: python3 -m pip install wheel pytest pytest-cov pytest-timeout defusedxml
4848

4949
- name: Install dependencies
5050
id: install

winbuild/build.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ Some binary dependencies (e.g. ``fribidi.dll``) will be stored in the
9090
``winbuild\build\bin`` directory; this directory should be added to ``PATH``
9191
before running tests.
9292

93-
Build and install Pillow, then run ``python -m pytest Tests``
94-
from the root Pillow directory.
93+
Build and install Pillow, then run ``python3 -m pytest`` from the root Pillow
94+
directory.
9595

9696
Example
9797
-------

0 commit comments

Comments
 (0)