From 6b9b0f7e3f78ecc5236b2ee779d2b176646c71dd Mon Sep 17 00:00:00 2001 From: chfw Date: Mon, 12 Oct 2020 22:58:12 +0100 Subject: [PATCH] :egg: :ferris_wheel: release 0.6.3 --- changelog.yml | 4 ++-- tests/test_issues.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/changelog.yml b/changelog.yml index 15e5619..e53cad9 100644 --- a/changelog.yml +++ b/changelog.yml @@ -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: diff --git a/tests/test_issues.py b/tests/test_issues.py index 50dc537..d9cbfd6 100644 --- a/tests/test_issues.py +++ b/tests/test_issues.py @@ -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")