We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3637b3e commit cbd017aCopy full SHA for cbd017a
setup.py
@@ -5,15 +5,15 @@
5
def read_files(files):
6
data = []
7
for file in files:
8
- with open(file) as f:
+ with open(file, encoding='utf-8') as f:
9
data.append(f.read())
10
return "\n".join(data)
11
12
13
long_description = read_files(['README.md', 'CHANGELOG.md'])
14
15
meta = {}
16
-with open('./src/dotenv/version.py') as f:
+with open('./src/dotenv/version.py', encoding='utf-8') as f:
17
exec(f.read(), meta)
18
19
setup(
0 commit comments