From d0921c043a8ea348771bdb7041a0f06dbf05fc4c Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Fri, 1 Dec 2023 19:31:45 +0100 Subject: [PATCH] Install `setuptools` because it doesn't come pre-installed in Python 3.12 --- appveyor.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index deababd..1fa7f82 100755 --- a/appveyor.yml +++ b/appveyor.yml @@ -108,6 +108,9 @@ install: # Install wheel. - "%CMD_IN_ENV% pip install wheel" + # Install setuptools. Setup tools doesn't comes by default in Python 3.12. + - "%CMD_IN_ENV% pip install setuptools" + # We are in projects/yara-python, lets go out to projects. - cd ..