Skip to content

Commit 6adc73b

Browse files
committed
travis-ci: only upload one file
1 parent 404cb23 commit 6adc73b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,12 @@ script:
7676
- if [[ "${BUILD_TARGET}" = "windows64" ]]; then
7777
mkdir wheelhouse;
7878
ls dist/*any.whl | sed -e 'p;s/any/win_amd64/' | xargs -n2 cp;
79-
mv dist/*.whl wheelhouse/;
79+
mv dist/*win_amd64.whl wheelhouse/;
8080
fi
8181
- if [[ "${BUILD_TARGET}" = "windows32" ]]; then
8282
mkdir wheelhouse;
8383
ls dist/*any.whl | sed -e 'p;s/any/win32/' | xargs -n2 cp;
84-
mv dist/*.whl wheelhouse/;
84+
mv dist/*win32.whl wheelhouse/;
8585
fi
8686
- if [[ ! -z "${TRAVIS_TAG}" ]]; then
8787
echo "Deploying to PyPi";

0 commit comments

Comments
 (0)