From 924c8161d419725a36a5f0f021d9a47521b104e2 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Wed, 27 Jan 2021 16:43:18 +0100 Subject: [PATCH] Allow using the latest version of "wheel" instead of enforcing version 0.29.0. --- appveyor.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 0eeb2f2..ac5bacb 100755 --- a/appveyor.yml +++ b/appveyor.yml @@ -109,10 +109,8 @@ install: # pip will build them from source using the MSVC compiler matching the # target Python version and architecture. - # wheel version 0.29.0 is enforced because version 0.30.0 doesn't support - # Python 2.6 anymore. Once we drop support for Python 2.6 we can use the - # latest version of wheel. - - "%CMD_IN_ENV% pip install wheel==0.29.0" + # Install wheel. + - "%CMD_IN_ENV% pip install wheel" # We are in projects/yara-python, lets go out to projects. - cd ..