Skip to content

Commit

Permalink
Merge pull request #31 from thombashi/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
thombashi committed Jul 2, 2016
2 parents f26a7dd + 62a2a1f commit e4084ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DataProperty>=0.3.1
DataProperty>=0.4.0
jsonschema
pathvalidate>=0.4.2
path.py
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setuptools.setup(
name="SimpleSQLite",
version="0.3.5",
version="0.3.6",
url="https://github.com/thombashi/SimpleSQLite",
bugtrack_url="https://github.com/thombashi/SimpleSQLite/issues",

Expand Down
2 changes: 1 addition & 1 deletion simplesqlite/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1240,6 +1240,6 @@ def __get_column_valuetype(data_matrix):
col_prop_list = prop_extractor.extract_column_property_list()

return dict([
[col, typename_table[col_prop.typecode]]
[col, typename_table.get(col_prop.typecode, "TEXT")]
for col, col_prop in enumerate(col_prop_list)
])

0 comments on commit e4084ad

Please sign in to comment.