Skip to content

Commit 551b8d5

Browse files
committed
Fix pip call
1 parent 18b69ff commit 551b8d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ install:
5151
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
5252
# Upgrade to the latest version of pip to avoid it displaying warnings
5353
# about it being out of date.
54-
- 'pip install --disable-pip-version-check --user --upgrade pip'
54+
- 'python -m pip install --disable-pip-version-check --user --upgrade pip'
5555
# install tox
56-
- pip install tox
56+
- python -m pip install tox
5757
# install of the actual project is handled by tox in tests
5858
test_script:
5959
# run tox tests

0 commit comments

Comments
 (0)