We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83f20a9 commit 31d6061Copy full SHA for 31d6061
1 file changed
.travis.yml
@@ -5,7 +5,8 @@ env:
5
- CIBW_TEST_REQUIRES="nose2"
6
- CIBW_TEST_COMMAND="cd {project}/test && nose2"
7
- CIBW_SKIP="cp33-* cp34-*"
8
-
+ - TWINE_USERNAME=mmatl
9
+
10
matrix:
11
include:
12
- dist: trusty
@@ -25,3 +26,8 @@ install:
25
26
27
script:
28
- cibuildwheel --output-dir wheelhouse
29
+ - |
30
+ if [[ $TRAVIS_TAG ]]; then
31
+ python -m pip install twine
32
+ python -m twine upload wheelhouse/*.whl
33
+ fi
0 commit comments