File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# drmaa-python
22
3- DRMAA bindings for Python
3+ DRMAA bindings for Python. Now Python 3 compatible.
44
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ class DictAttribute(object):
133133 def __init__ (self , name ):
134134 self .name = name
135135 def __set__ (self , instance , value ):
136- v = [ "%s=%s" % (k , v ) for (k , v ) in value .iteritems () ]
136+ v = [ "%s=%s" % (k , v ) for (k , v ) in value .items () ]
137137 c (drmaa_set_vector_attribute , instance , self .name , string_vector (v ))
138138 def __get__ (self , instance , _ ):
139139 x = [ i .split ('=' , 1 ) for i in list (vector_attribute_iterator (
Original file line number Diff line number Diff line change 11# -----------------------------------------------------------
2- # Copyright (C) 2009 StatPro Italia s.r.l.
3- #
4- # StatPro Italia
5- # Via G. B. Vico 4
6- # I-20123 Milano
7- # ITALY
8- #
9- # phone: +39 02 96875 1
10- # fax: +39 02 96875 605
11- #
12- # This program is distributed in the hope that it will be
13- # useful, but WITHOUT ANY WARRANTY; without even the
14- # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15- # PURPOSE. See the license for more details.
2+ # Copyright (C) 2009 StatPro Italia s.r.l.
3+ #
4+ # StatPro Italia
5+ # Via G. B. Vico 4
6+ # I-20123 Milano
7+ # ITALY
8+ #
9+ # phone: +39 02 96875 1
10+ # fax: +39 02 96875 605
11+ #
12+ # This program is distributed in the hope that it will be
13+ # useful, but WITHOUT ANY WARRANTY; without even the
14+ # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15+ # PURPOSE. See the license for more details.
1616# -----------------------------------------------------------
17- #
18- # Author: Enrico Sirola <enrico.sirola@statpro.com>
17+ #
18+ # Author: Enrico Sirola <enrico.sirola@statpro.com>
1919
2020from setuptools import setup , find_packages
2121
2424
2525setup (
2626 name = "drmaa" ,
27- version = "0.5 " ,
27+ version = "0.6 " ,
2828 packages = packages ,
2929 package_data = package_data ,
3030 author = "Enrico Sirola" ,
4444Intended Audience :: Science/Research
4545License :: OSI Approved :: BSD License
4646Programming Language :: Python :: 2
47+ Programming Language :: Python :: 3
4748Topic :: Software Development :: Libraries :: Python Modules
4849Topic :: System :: Distributed Computing""" .split ('\n ' ),
4950)
50-
51+
5152
You can’t perform that action at this time.
0 commit comments