From 8bcc174bc34a5bbf0af8d149fd2b019d8cb6f5e7 Mon Sep 17 00:00:00 2001 From: Manul Patel Date: Mon, 15 May 2023 18:36:29 +0530 Subject: [PATCH] Specify encoding style --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 343ca03a9..ed354fb82 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ HERE = pathlib.Path(__file__).parent # The text of the README file. -README = (HERE / "README.md").read_text() +README = (HERE / "README.md").read_text(encoding="UTF-8") ADAPTER_EXTRA_REQUIREMENTS = { "snowflake": ["dbt-snowflake>=0.20,<2.0.0"],