Skip to content

Commit 85ff9a1

Browse files
committed
Add config for automatic deployment from Travis-CI
1 parent 9572f60 commit 85ff9a1

File tree

1 file changed

+19
-15
lines changed

1 file changed

+19
-15
lines changed

.travis.yml

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
language: python
22
python:
3-
- "2.6"
4-
- "2.7"
5-
- "3.3"
6-
- "3.4"
7-
- "3.5"
8-
- "3.6"
9-
- "pypy"
10-
- "pypy3"
11-
3+
- '2.6'
4+
- '2.7'
5+
- '3.3'
6+
- '3.4'
7+
- '3.5'
8+
- '3.6'
9+
- pypy
10+
- pypy3
1211
install:
13-
- travis_retry pip install coveralls
14-
12+
- travis_retry pip install coveralls
1513
script:
16-
- coverage run --source=jsonpointer tests.py
17-
14+
- coverage run --source=jsonpointer tests.py
1815
after_script:
19-
- coveralls
20-
16+
- coveralls
2117
sudo: false
18+
deploy:
19+
provider: pypi
20+
user: skoegl
21+
password:
22+
secure: g+81X6n8etmQQ9ZbxoSx/OoXsDHBwgoBlesnrYP4RBHLoez3wBbI2w1tu7Uce2irWMmkoFIpQHguXxOqHVoGzx18s1njp9/1fyrJ3f6gYbcQrUnwRFjYGcIc0TUSTI9dLpnRKCp9glNwIvPx7n6/5avZIaXveLU9j4DIm1xA1ZM=
23+
on:
24+
tags: true
25+
distributions: sdist bdist_wheel

0 commit comments

Comments
 (0)