summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kögl <stefan@skoegl.net>2017-09-10 19:19:31 +0200
committerStefan Kögl <stefan@skoegl.net>2017-09-10 19:19:31 +0200
commit85ff9a1b2165edce7baae2ddbf60a2a7f2557ce5 (patch)
treeece3b2ade3792a44f935e9294c1c47169a4bbc91
parent9572f604700a58188aa6047b38db4f77ab2a5610 (diff)
downloadpython-json-pointer-85ff9a1b2165edce7baae2ddbf60a2a7f2557ce5.tar.gz
Add config for automatic deployment from Travis-CI
-rw-r--r--.travis.yml34
1 files changed, 19 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml
index 389dc95..7c737e4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,21 +1,25 @@
language: python
python:
- - "2.6"
- - "2.7"
- - "3.3"
- - "3.4"
- - "3.5"
- - "3.6"
- - "pypy"
- - "pypy3"
-
+- '2.6'
+- '2.7'
+- '3.3'
+- '3.4'
+- '3.5'
+- '3.6'
+- pypy
+- pypy3
install:
- - travis_retry pip install coveralls
-
+- travis_retry pip install coveralls
script:
- - coverage run --source=jsonpointer tests.py
-
+- coverage run --source=jsonpointer tests.py
after_script:
- - coveralls
-
+- coveralls
sudo: false
+deploy:
+ provider: pypi
+ user: skoegl
+ password:
+ secure: g+81X6n8etmQQ9ZbxoSx/OoXsDHBwgoBlesnrYP4RBHLoez3wBbI2w1tu7Uce2irWMmkoFIpQHguXxOqHVoGzx18s1njp9/1fyrJ3f6gYbcQrUnwRFjYGcIc0TUSTI9dLpnRKCp9glNwIvPx7n6/5avZIaXveLU9j4DIm1xA1ZM=
+ on:
+ tags: true
+ distributions: sdist bdist_wheel