From: Paul Brossier Date: Mon, 24 Sep 2018 21:14:21 +0000 (+0200) Subject: .appveyor.yml: clean before building python wheel X-Git-Tag: 0.4.8~100^2~6 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=cdc610bf77315a779256ddb9a1f9a7526c317159;p=aubio.git .appveyor.yml: clean before building python wheel --- diff --git a/.appveyor.yml b/.appveyor.yml index a9f308be..f4f29983 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -63,7 +63,9 @@ before_build: build_script: # also build libaubio with waf - - python waf distclean configure build install --verbose --msvc_version="msvc 14.0" + - python waf configure build install --verbose --msvc_version="msvc 14.0" + # clean before building python package + - python waf distclean # build python module without using libaubio - pip wheel -v -v -v --wheel-dir=dist . # build, upload and install wheel (inspired by numpy's appveyor)