We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2cc3aa commit 4e85d2cCopy full SHA for 4e85d2c
1 file changed
.travis.yml
@@ -4,9 +4,12 @@ git:
4
submodules: true
5
depth: 10
6
7
-os:
8
- - linux
9
- - osx
+matrix:
+ include:
+ - os: linux
10
+ compiler: clang
11
+ - os: osx
12
13
14
env:
15
global:
@@ -45,5 +48,6 @@ script:
45
48
- python test/visual.py -q
46
49
- if [[ ${COMMIT_MESSAGE} =~ "[publish]" ]]; then
47
50
python setup.py bdist_wheel;
- twine -u $PYPI_USER -p $PYPI_PASSWORD dist/* ;
51
+ export DISTS='dist/*';
52
+ twine -u $PYPI_USER -p $PYPI_PASSWORD $DISTS ;
53
fi;
0 commit comments