-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
26 lines (26 loc) · 1.14 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: python
python:
- "3.5"
- "3.6"
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
install:
- pip install tox-travis coveralls
script:
- tox
after_success:
- coveralls
deploy:
provider: pypi
user: mkoura
password:
secure: HlNLXr53bpxHTykTUiLW3ZaUPPeWjDJdN5ccRgocEuVcdOT2JtB/3XKsRQSy2PlK8jHSmoHbydtL/JVZoxyrEH4P5dArAMnmrVdC67TvW5h0jRryK1RRMMTt8DzJNE2CISE75FDV9EnOMN1g1mT0bZohnwSIpDale3z++yFCaGaHv2v6nZGZKX56oN5t/b/mawpGdbrSvqF80TJNp8C5nu+HZfJdQ6JTMEh5wb/a4CVdJbcUA2QBrywWvAixz/ZSyhNNdfKGhqIwm0QLJt6r2DEoJCD71NOubfc+2BI01vn5JKMT3BnhqcUFhubP51VNITdkc55yMMS7zVdzuIEEC9Mcy0TFVY+6tZaT0245kBlqPsnspxYxoirKvYwllQjU2kh1Sf/L7VmMah73AUFDFeFEdIp3pEla3+7aS+7iR26Yc61uJxaDtZpzP1xSepeMjhW9WWMKWiZwUrgVivBKv2GgH1+C4oHWPLDf8m/kKAy2cg2ud+dfaDekDpXQfmDqpcHNR5GxQ74k6x3Z3cTpjw0Ey/pNdu4cl54ACQ7DsCM4RXJQUl/n+vEx8kyj6Hwf7Flw8FZLkmkHwjTmL08vEw1U271pmSSH9jpMwe52H8Xi/ygZDwKSbBunKjqf3xNQgSNsFiBQXQHuH6jp4GtNZiUB8nbPDREbFDfeUg62a94=
distributions: "sdist bdist_wheel"
on:
tags: true
branch: master
condition: $TRAVIS_PYTHON_VERSION = "3.6"