🥚 🎡 release 0.6.3

This commit is contained in:
chfw 2020-10-12 22:58:12 +01:00
parent 71c28b4bc9
commit 6b9b0f7e3f
2 changed files with 3 additions and 3 deletions

View File

@ -2,11 +2,11 @@ name: pyexcel-io
organisation: pyexcel
releases:
- changes:
- action: updated
- action: fixed
details:
- "`#96`: regression: unknown file type shall trigger NoSupportingPluginFound"
version: 0.6.3
date: tbd
date: 12.10.2020
- changes:
- action: updated
details:

View File

@ -51,7 +51,7 @@ def test_issue_33_34():
def test_issue_30_utf8_BOM_header():
content = [[u"人有悲歡離合", u"月有陰晴圓缺"]]
content = [["人有悲歡離合", "月有陰晴圓缺"]]
test_file = "test-utf8-BOM.csv"
save_data(test_file, content, encoding="utf-8-sig", lineterminator="\n")
custom_encoded_content = get_data(test_file, encoding="utf-8-sig")