dbeatty10 / dbt-mysql

dbt-mysql contains all of the code enabling dbt to work with MySQL and MariaDB
Apache License 2.0
75 stars 53 forks source link

Unicode decode error fix #161

Closed sagunn-echo closed 8 months ago

sagunn-echo commented 11 months ago

Explicitly defining utf-8 encoding to avoid UnicodeDecodeError on setup.py in Windows environment

resolves #

Resolves #160

Description

Changes long_description=README.read_text() to long_description=README.read_text(encoding='utf-8') in setup.py

Checklist

mwallace582 commented 8 months ago

I've fixed the conflicts and re-issued this pull request as #169.