Skip to content

Commit 6dfa5fc

Browse files
committed
RLS: bump dev version to 0.10.0
1 parent 1d78502 commit 6dfa5fc

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pandas/io/pytables.py

+3
Original file line numberDiff line numberDiff line change
@@ -966,6 +966,9 @@ def _convert_index(index):
966966
dtype=np.int32)
967967
return converted, 'date', _tables().Time32Col()
968968
elif inferred_type == 'string':
969+
# atom = _tables().ObjectAtom()
970+
# return np.asarray(values, dtype='O'), 'object', atom
971+
969972
converted = np.array(list(values), dtype=np.str_)
970973
itemsize = converted.dtype.itemsize
971974
return converted, 'string', _tables().StringCol(itemsize)

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@
203203
]
204204

205205
MAJOR = 0
206-
MINOR = 9
207-
MICRO = 2
206+
MINOR = 10
207+
MICRO = 0
208208
ISRELEASED = False
209209
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
210210
QUALIFIER = ''

0 commit comments

Comments
 (0)