Skip to content

Commit 736098d

Browse files
author
Sakari Rautiainen
committed
2 parents 030c2d6 + 2a85afb commit 736098d

File tree

3 files changed

+92
-89
lines changed

3 files changed

+92
-89
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2.42.0
2+
* Support for Python 3.x
3+
* New method to launch test run using test run config (Requires: Testdroid v2.58 or higher)
4+
* Api call to retrieve input files
15
2.41.4
26
* Don't separately update project when calling start_test_run()
37
2.41.3

setup.py

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

55

6-
version = '2.41.4'
6+
version = '2.42.1'
77

88
setup(name='testdroid',
99
version=version,
1010
description="Testdroid API client for Python",
1111
long_description="""\
1212
Testdroid API client for Python""",
1313
classifiers=['Operating System :: OS Independent',
14-
'Topic :: Software Development',
14+
'Topic :: Software Development',
1515
'Intended Audience :: Developers'], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
1616
keywords='testdroid rest api client',
1717
author='Henri Kivelä <[email protected]>, Sakari Rautiainen <[email protected]>, Teppo Malinen <[email protected]>, Jarno Tuovinen <[email protected]>',
@@ -22,12 +22,12 @@
2222
include_package_data=True,
2323
zip_safe=True,
2424
install_requires=[
25-
'requests', 'pillow',
25+
'requests',
2626
],
2727

2828
entry_points = {
2929
'console_scripts': [
30-
'testdroid = testdroid:main',
30+
'testdroid = testdroid:main',
3131
],
3232
},
3333
)

0 commit comments

Comments
 (0)