From 551b8d5d3f2022b64cb468443a5153ed808024d5 Mon Sep 17 00:00:00 2001 From: Juergen Hasch Date: Sat, 9 Jul 2022 10:46:52 +0200 Subject: [PATCH] Fix pip call --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index ab91148..457847e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -51,9 +51,9 @@ install: - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" # Upgrade to the latest version of pip to avoid it displaying warnings # about it being out of date. - - 'pip install --disable-pip-version-check --user --upgrade pip' + - 'python -m pip install --disable-pip-version-check --user --upgrade pip' # install tox - - pip install tox + - python -m pip install tox # install of the actual project is handled by tox in tests test_script: # run tox tests