Skip to content

Commit

Permalink
Merge pull request #6222 from radarhere/python3
Browse files Browse the repository at this point in the history
Use python3
  • Loading branch information
hugovk committed Jun 10, 2022
2 parents 1c810be + 2356034 commit 31b98bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-windows.yml
Expand Up @@ -41,10 +41,10 @@ jobs:
cache-dependency-path: ".github/workflows/test-windows.yml"

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

- name: python -m pip install wheel pytest pytest-cov pytest-timeout defusedxml
run: python -m pip install wheel pytest pytest-cov pytest-timeout defusedxml
- name: python3 -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
id: install
Expand Down
4 changes: 2 additions & 2 deletions winbuild/build.rst
Expand Up @@ -90,8 +90,8 @@ Some binary dependencies (e.g. ``fribidi.dll``) will be stored in the
``winbuild\build\bin`` directory; this directory should be added to ``PATH``
before running tests.

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

Example
-------
Expand Down

0 comments on commit 31b98bb

Please sign in to comment.