Skip to content

Commit 082b13b

Browse files
committed
Bumped version number up to 0.6 and made everything Python 3 compatible.
1 parent 12b1e1f commit 082b13b

3 files changed

Lines changed: 21 additions & 20 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# drmaa-python
22

3-
DRMAA bindings for Python
3+
DRMAA bindings for Python. Now Python 3 compatible.
44

drmaa/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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(

setup.py

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
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

2020
from setuptools import setup, find_packages
2121

@@ -24,7 +24,7 @@
2424

2525
setup(
2626
name="drmaa",
27-
version="0.5",
27+
version="0.6",
2828
packages=packages,
2929
package_data=package_data,
3030
author="Enrico Sirola",
@@ -44,8 +44,9 @@
4444
Intended Audience :: Science/Research
4545
License :: OSI Approved :: BSD License
4646
Programming Language :: Python :: 2
47+
Programming Language :: Python :: 3
4748
Topic :: Software Development :: Libraries :: Python Modules
4849
Topic :: System :: Distributed Computing""".split('\n'),
4950
)
50-
51+
5152

0 commit comments

Comments
 (0)