From 4cb90fcfe4068146cf8dfd16a2460d7228be5ab2 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 8 Jan 2022 15:07:22 +0100 Subject: [PATCH] fix(ci): always upgrade pip on appveyor pip was too old to download windows abi3 wheels leading to pynacl failing to build from sources --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/appveyor.yml b/appveyor.yml index 192c8b9b..fbea6b73 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,6 +18,7 @@ init: if (-not ($BRANCH -eq 'main' -or $BRANCH.ToLower().StartsWith('appveyor-'))) { $env:PYTEST_ADDOPTS='-k "unit_test or test_0_basic" --suppress-no-test-exit-code' } + python -m pip install -U pip install: python -m pip install -e ".[dev]" pytest-custom-exit-code