|
7 | 7 | import os
|
8 | 8 | import sys
|
9 | 9 |
|
10 | | -with open(os.path.join(os.path.dirname(__file__), "VERSION")) as ver_file: |
| 10 | +with open(os.path.join(os.path.dirname(__file__), "VERSION"), encoding="utf-8") as ver_file: |
11 | 11 | VERSION = ver_file.readline().strip()
|
12 | 12 |
|
13 | | -with open("requirements.txt") as reqs_file: |
| 13 | +with open("requirements.txt", encoding="utf-8") as reqs_file: |
14 | 14 | requirements = reqs_file.read().splitlines()
|
15 | 15 |
|
16 | | -with open("test-requirements.txt") as reqs_file: |
| 16 | +with open("test-requirements.txt", encoding="utf-8") as reqs_file: |
17 | 17 | test_requirements = reqs_file.read().splitlines()
|
18 | 18 |
|
19 | | -with open("README.md") as rm_file: |
| 19 | +with open("README.md", encoding="utf-8") as rm_file: |
20 | 20 | long_description = rm_file.read()
|
21 | 21 |
|
22 | 22 |
|
|
0 commit comments