We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9572f60 commit 85ff9a1Copy full SHA for 85ff9a1
1 file changed
.travis.yml
@@ -1,21 +1,25 @@
1
language: python
2
python:
3
- - "2.6"
4
- - "2.7"
5
- - "3.3"
6
- - "3.4"
7
- - "3.5"
8
- - "3.6"
9
- - "pypy"
10
- - "pypy3"
11
-
+- '2.6'
+- '2.7'
+- '3.3'
+- '3.4'
+- '3.5'
+- '3.6'
+- pypy
+- pypy3
12
install:
13
- - travis_retry pip install coveralls
14
+- travis_retry pip install coveralls
15
script:
16
- - coverage run --source=jsonpointer tests.py
17
+- coverage run --source=jsonpointer tests.py
18
after_script:
19
- - coveralls
20
+- coveralls
21
sudo: false
+deploy:
+ provider: pypi
+ user: skoegl
+ password:
22
+ secure: g+81X6n8etmQQ9ZbxoSx/OoXsDHBwgoBlesnrYP4RBHLoez3wBbI2w1tu7Uce2irWMmkoFIpQHguXxOqHVoGzx18s1njp9/1fyrJ3f6gYbcQrUnwRFjYGcIc0TUSTI9dLpnRKCp9glNwIvPx7n6/5avZIaXveLU9j4DIm1xA1ZM=
23
+ on:
24
+ tags: true
25
+ distributions: sdist bdist_wheel
0 commit comments