From 4ab6058561dfa7a5c9c21f6d194d7c7a17980334 Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Wed, 27 Jan 2021 16:01:27 +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 e5fb288..00fb923 100755 --- a/appveyor.yml +++ b/appveyor.yml @@ -97,10 +97,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 ..