We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c84446 commit b4eb6d0Copy full SHA for b4eb6d0
.travis.yml
@@ -32,6 +32,7 @@ install:
32
- pip install hypothesis Cython wheel
33
34
script:
35
+ - echo $TRAVIS_PYTHON_VERSION
36
- python setup.py build_ext -i
37
- HYPOTHESIS_PROFILE=ci python test.py
38
- python -c "import cydoctest, pyroaring; cydoctest.testmod(pyroaring)" -v
@@ -45,3 +46,19 @@ script:
45
46
- python setup.py sdist
47
- pip install dist/pyroaring*.tar.gz
48
- python test.py
49
+
50
+before_deploy:
51
+ - python setup.py bdist_wheel
52
+ - python setup.py sdist
53
+ - ls -l dist/
54
+deploy:
55
+ provider: releases
56
+ api_key: $GITHUB_TOKEN
57
+ python: 3.6
58
+ file_glob: true
59
+ file: dist/*{tar.gz,whl}
60
+ skip_cleanup: true
61
+ on:
62
+ branch: master
63
+ tags: true
64
+ condition: $TRAVIS_PYTHON_VERSION == 3.6
0 commit comments