@@ -34,14 +34,26 @@ matrix:
34
34
- PYTHON_BIN=python3
35
35
- os : windows
36
36
language : shell # python not supported yet
37
- name : windows
37
+ name : windows64
38
38
before_install :
39
39
choco install python3 --version=3.7.5;
40
40
python -m pip install --upgrade pip;
41
41
python --version;
42
42
pip3 --version;
43
43
env :
44
- - BUILD_TARGET=windows
44
+ - BUILD_TARGET=windows64
45
+ - PATH=/c/Python37:/c/Python37/Scripts:$PATH
46
+ - PYTHON_BIN=python
47
+ - os : windows
48
+ language : shell # python not supported yet
49
+ name : windows32
50
+ before_install :
51
+ choco install python3 --forcex86 --version=3.7.5;
52
+ python -m pip install --upgrade pip;
53
+ python --version;
54
+ pip3 --version;
55
+ env :
56
+ - BUILD_TARGET=windows32
45
57
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
46
58
- PYTHON_BIN=python
47
59
install :
@@ -61,11 +73,15 @@ script:
61
73
delocate-wheel -w wheelhouse -v dist/*.whl;
62
74
ls wheelhouse/*any.whl | sed -e 'p;s/any/macosx_10_9_x86_64/' | xargs -n2 mv;
63
75
fi
64
- - if [[ "${BUILD_TARGET}" = "windows " ]]; then
76
+ - if [[ "${BUILD_TARGET}" = "windows64 " ]]; then
65
77
mkdir wheelhouse;
66
- ls dist/*any.whl | sed -e 'p;s/any/win32/' | xargs -n2 cp;
67
78
ls dist/*any.whl | sed -e 'p;s/any/win_amd64/' | xargs -n2 cp;
68
- mv dist/*win32.whl dist/*win_amd64.whl wheelhouse/;
79
+ mv dist/*.whl wheelhouse/;
80
+ fi
81
+ - if [[ "${BUILD_TARGET}" = "windows32" ]]; then
82
+ mkdir wheelhouse;
83
+ ls dist/*any.whl | sed -e 'p;s/any/win32/' | xargs -n2 cp;
84
+ mv dist/*.whl wheelhouse/;
69
85
fi
70
86
- if [[ ! -z "${TRAVIS_TAG}" ]]; then
71
87
echo "Deploying to PyPi";
0 commit comments