From 36cc9ea6bd633559730ddc0a8b6f81ac7a5ce9ea Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 1 Sep 2015 06:57:48 -0400 Subject: Fix wheel building --- appveyor.yml | 2 +- ci/appveyor-bootstrap.ps1 | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index fb0b8d2a..bfa425e4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -93,7 +93,7 @@ test_script: after_test: - if "%COVERAGE_COVERAGE%" == "yes" 7z a metacov-win-%TOXENV%.zip %APPVEYOR_BUILD_FOLDER%\.metacov* - - if NOT "%COVERAGE_COVERAGE%" == "yes" "%WITH_COMPILER% %PYTHON%/python setup.py bdist_wheel" + - if NOT "%COVERAGE_COVERAGE%" == "yes" %WITH_COMPILER% %PYTHON_HOME%\python setup.py bdist_wheel bdist_wininst artifacts: - path: "dist\\*" diff --git a/ci/appveyor-bootstrap.ps1 b/ci/appveyor-bootstrap.ps1 index 04aad9b3..6cc60b00 100644 --- a/ci/appveyor-bootstrap.ps1 +++ b/ci/appveyor-bootstrap.ps1 @@ -80,9 +80,9 @@ function InstallPackage ($python_home, $pkg) { function main () { InstallPython $env:PYTHON_VERSION $env:PYTHON_PRERELEASE $env:PYTHON_ARCH $env:PYTHON_HOME InstallPip $env:PYTHON_HOME - InstallPackage $env:PYTHON_HOME setuptools - InstallPackage $env:PYTHON_HOME wheel - InstallPackage $env:PYTHON_HOME tox + InstallPackage $env:PYTHON_HOME setuptools==18.2 + InstallPackage $env:PYTHON_HOME wheel==0.24.0 + InstallPackage $env:PYTHON_HOME tox==2.1.1 } main -- cgit v1.2.1