From 2699802bca0f9e97c0e1a835382fbf7b25ec120e Mon Sep 17 00:00:00 2001 From: Casper van der Wel Date: Fri, 3 Dec 2021 22:23:55 +0100 Subject: [PATCH] Output wheels into dist, not wheelhouse --- examples/travis-ci-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/travis-ci-deploy.yml b/examples/travis-ci-deploy.yml index 82fb61ec..7f145307 100644 --- a/examples/travis-ci-deploy.yml +++ b/examples/travis-ci-deploy.yml @@ -22,8 +22,8 @@ install: - python3 -m pip install cibuildwheel==2.3.0 script: - # build the wheels, put them into './wheelhouse' - - python3 -m cibuildwheel --output-dir wheelhouse + # build the wheels, put them into './dist' + - python3 -m cibuildwheel --output-dir dist deploy: provider: pypi