Skip to content

Commit 5c1f0f5

Browse files
committed
Merge branch 'release/0.7.3' into develop
2 parents 43ed63a + 1b818e5 commit 5c1f0f5

3 files changed

Lines changed: 7 additions & 1 deletion

File tree

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ License
3939
Changelog
4040
~~~~~~~~~
4141

42+
- v0.7.3
43+
44+
- Fix a couple crashes when certain functions that expect ``str`` were passed
45+
integers.
46+
4247
- v0.7.2
4348

4449
- Fix a couple inconsistencies with ``str`` vs ``bytes`` in Python 3 in

drmaa/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
:author: Dan Blanchard (dblanchard@ets.org)
2323
'''
2424

25-
__version__ = '0.7.2'
25+
__version__ = '0.7.3'
2626
VERSION = tuple(int(x) for x in __version__.split('.'))

drmaa/wrappers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
from __future__ import absolute_import, print_function, unicode_literals
2525

2626
import os
27+
import sys
2728
from ctypes import (c_char_p, c_int, c_long, c_size_t, c_uint, c_ulong, CDLL,
2829
POINTER, RTLD_GLOBAL, sizeof, Structure)
2930
from ctypes.util import find_library

0 commit comments

Comments
 (0)