Skip to content

Commit 1eee573

Browse files
authored
fix deprecation and possible faulty construction of pandas tables (#221) [skip ci]
* fix deprecation and possible faulty construction of pandas tables * bump version * revert version bump
1 parent 32e22a4 commit 1eee573

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pywrap/PyPandasDataFrame.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ function _columns(df, columnnames, columntypes)
102102
# output a table
103103
# TODO: realising columns to vectors could be done lazily with a different table type
104104
schema = Tables.Schema(colnames, coltypes)
105-
coldict = Dict(k=>v for (k,v) in zip(colnames, columns))
105+
coldict = Tables.OrderedDict(k=>v for (k,v) in zip(colnames, columns))
106106
Tables.DictColumnTable(schema, coldict)
107107
end

0 commit comments

Comments
 (0)