Skip to content

Commit db0620e

Browse files
author
Luiko Czub
committed
update configuration / documentation for Py26 support #21
1 parent 4d4eec7 commit db0620e

File tree

6 files changed

+32
-10
lines changed

6 files changed

+32
-10
lines changed

CHANGES.rst

+16
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ Changes in TestLink-API-Python-client Source Distribution
44
TestLink-API-Python-client UNDER DEVELOP v0.4.8
55
-----------------------------------------------
66

7+
add Python 2.6 support #21
8+
~~~~~~~~~~~~~~~~~~~~~~~~~~
9+
10+
Installation failed under Python 2.6 with on error, cause TestlinkAPIGeneric
11+
used in '_convertPostionalArgs()' a
12+
`Py31 feature, back ported to Py27 <http://docs.python.org/2/whatsnew/2.7.html#python-3-1-features>`_
13+
14+
- Dictionary and set comprehensions ({i: i*2 for i in range(3)}).
15+
16+
TestLink-API-Python-client is now installable under Py26 and Py27.
17+
To use it under Py26, the module 'argparse' must be installed additionally::
18+
19+
pip install argparse
20+
pip install TestLink-API-Python-client
21+
22+
723
implement 1.9.9 api changes - getLastExecutionResult #16
824
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
925
TestlinkAPIGeneric and TestlinkAPIClient api method getLastExecutionResult()

README.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ how existing code can be adapted
8282
TestLink-API-Python-client developers
8383
-------------------------------------
8484
* `James Stock`_, `Olivier Renault`_, `lczub`_
85-
* `g4l4drim`_, `pade`_, `anton-matosov`_, `citizen-stig`_
85+
* `g4l4drim`_, `pade`_, `anton-matosov`_, `citizen-stig`_, `charz`_
8686
* anyone forgotten?
8787

8888
.. _Apache License 2.0: http://www.apache.org/licenses/LICENSE-2.0
@@ -102,3 +102,4 @@ TestLink-API-Python-client developers
102102
.. _lczub: https://github.com/lczub/TestLink-API-Python-client
103103
.. _anton-matosov: https://github.com/anton-matosov/TestLink-API-Python-client
104104
.. _citizen-stig: https://github.com/citizen-stig/TestLink-API-Python-client
105+
.. _charz: https://github.com/charz/TestLink-API-Python-client.git

doc/install.rst

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,15 @@ TestLink-API-Python-client Installation
44
Preconditions
55
-------------
66

7-
Currently only the combination Python 2.7 and TestLink 1.9.8/1.9.9 is tested.
7+
Currently only the combinations Python 2.6.6/2.7.5 and TestLink 1.9.8/1.9.9 are tested.
88

99
- Other combination might work - feedback is welcome :-)
1010

11+
To use TestLink-API-Python-client under Py26, the module 'argparse' must be
12+
installed additionally (Py27 already includes this)::
13+
14+
pip install argparse
15+
1116
TestLink configuration
1217
----------------------
1318

@@ -40,7 +45,7 @@ The source code can be retrieved as source distribution either
4045

4146
Install the archives using pip by running::
4247

43-
pip install TestLink-API-Python-client-0.4.6.zip
48+
pip install TestLink-API-Python-client-0.4.7.zip
4449
4550
Installing from source
4651
----------------------

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
'Development Status :: 4 - Beta',
1616
'License :: OSI Approved :: Apache Software License',
1717
'Operating System :: OS Independent',
18-
'Programming Language :: Python',
18+
'Programming Language :: Python :: 2.6',
19+
'Programming Language :: Python :: 2.7',
1920
'Topic :: Software Development :: Testing',
2021
'Topic :: Software Development :: Libraries :: Python Modules'
2122
]

src/testlink/testlinkapigeneric.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -1034,11 +1034,10 @@ def _convertPostionalArgs(self, methodName, valueList):
10341034
new_msg = '%s\n expected args: %s' % (new_msg, ', '.join(nameList))
10351035
raise testlinkerrors.TLArgError(new_msg)
10361036

1037-
ret = {}
1038-
for x in range(len(nameList)):
1039-
ret.update({nameList[x] : valueList[x] })
1040-
1041-
return ret
1037+
# issue #20: Following line works with Py27, but not with Py26
1038+
# return {nameList[x] : valueList[x] for x in range(len(nameList)) }
1039+
# this line works with Py26 and Py27 (and is also nice)
1040+
return dict(zip(nameList, valueList))
10421041

10431042
def _getAttachmentArgs(self, attachmentfile):
10441043
""" returns dictionary with key/value pairs needed, to transfer

src/testlink/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
#
1818
# ------------------------------------------------------------------------
1919

20-
VERSION = '0.4.8-dev-20'
20+
VERSION = '0.4.8-Beta'

0 commit comments

Comments
 (0)