Skip to content

Commit 1e29abb

Browse files
author
Sakari Rautiainen
authored
Merge pull request bitbar#112 from bitbar/devel
Devel to master
2 parents 12ff0c1 + ee8c388 commit 1e29abb

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

.travis.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
language: python
22
python:
3-
- "2.7"
4-
- "3.4"
5-
- "3.5"
6-
- "3.6"
7-
- "pypy3.5"
3+
- '2.7'
4+
- '3.4'
5+
- '3.5'
6+
- '3.6'
7+
- 'pypy3.5'
88
install:
99
- python setup.py clean
1010
- python setup.py sdist
1111
script:
1212
- python setup.py test
13+
deploy:
14+
provider: pypi
15+
user: info-bitbar
16+
password:
17+
secure: KIrmFjMsrEPMutbCQ1peWaOuTxzLVBY7Yy6+KpzkB8UC7hiR9Vqyx6Rfm0DX3N7C1r0wMP1zwo5/HqoV83vpD5x1b0PDFyey72Wj6qLOvcJKYnxJLtOS+KBX1WmDTOwZzvegsN2K3U+u0054lJ1VhIrgkJUwucpYZav6mAs0h7rTG73B36ZlNhfeHEYfBQ4H8NwZin4zDnq6auJOw4tHsPPoqHv7XSyVGRJXsMPXV4Xosu4yNEUdfyKQ/iJPE68DFRqiI8IIKjvxybu+VCupT9DOUCIYnGhjNcMdUV1HajZm9sp3zopCAlfqhsT+aKZSLs0NV8g0alXkw5FYfZTVOyjwM+vjyX/WSLtJEZvAPB8kTQGRCDMVwvbQGVnybRqRvBAbWxDqYOK0LYJENHAPa0ZaoA5yJYV3iwVkvq+V/qWN5+IMtNCWhDoucBBu4FOvEyVB85SZzSopXyhIA7MToX9tLoawuMH/UVoSoWYKay8PTTq3ARPprnQ5Lxw0IAqYmS5eefbmPW5Ie0KlPmtyAmHmfrdDaAJWa1FxE9SrSqtTZwYzy+cAKivXgHa6i8RJouDilt5HGSI/rpCFiDk8YvtR9VR47uDW4JXt6syvOEHpBwykQ1s9eu33swCnqUmK9wO2sTpQ4odQW1lwFZWlHfbMcjVaslQv3sIzgafbrfs=
18+
on:
19+
tags: true

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2.69.0
2+
* Added support for access groups
13
2.61.0
24
* Fix error with double slash for some API calls
35
* Added new test methods

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys, os
44

55

6-
version = '2.61.0'
6+
version = '2.69.0'
77

88
setup(name='testdroid',
99
version=version,
@@ -14,7 +14,7 @@
1414
'Topic :: Software Development',
1515
'Intended Audience :: Developers'], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
1616
keywords='testdroid rest api client',
17-
author='Henri Kivelä <[email protected]>, Sakari Rautiainen <[email protected]>, Teppo Malinen <[email protected]>, Jarno Tuovinen <[email protected]>',
17+
author='Henri Kivelä <[email protected]>, Sakari Rautiainen <[email protected]>, Teppo Malinen <[email protected]>, Jarno Tuovinen <[email protected]>, Atte Keltanen <[email protected]>',
1818
author_email='[email protected]',
1919
url='http://www.testdroid.com',
2020
license='Apache License v2.0',

testdroid/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from optparse import OptionParser
1212
from datetime import datetime
1313

14-
__version__ = '2.61.0'
14+
__version__ = '2.69.0'
1515

1616
FORMAT = "%(message)s"
1717
logging.basicConfig(format=FORMAT)

0 commit comments

Comments
 (0)