summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-09-01 06:57:48 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-09-01 06:57:48 -0400
commit5bbad2388f834c92fbdcb9011955e339f137a31e (patch)
tree2a6944976c6828a2c42abc7829279c086eed9cf0 /ci
parent9a562b71d914d47f93f865339d62151a970fbb8c (diff)
downloadpython-coveragepy-5bbad2388f834c92fbdcb9011955e339f137a31e.tar.gz
Fix wheel building
Diffstat (limited to 'ci')
-rw-r--r--ci/appveyor-bootstrap.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/ci/appveyor-bootstrap.ps1 b/ci/appveyor-bootstrap.ps1
index 04aad9b..6cc60b0 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