Skip to content

Commit 731d122

Browse files
committed
added utf-8 encoding to read in setup.py
1 parent 3746a7e commit 731d122

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ in C++ library.
4242

4343
### Binary releases
4444

45+
NOTE: The Binary releases are not being maintained. Suggest building from Sources instead.
46+
4547
If you want to use `htm.core` from Python, the easiest method is to install from [PyPI](https://test.pypi.org/project/htm.core/)
4648
- Note: to install from `pip` you'll need Python 3.7 only(does not work with older or newer versions)
4749

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ def configure(platform, build_type):
413413
else: #full build
414414
getExtensionFiles(platform, build_type)
415415

416-
with open(os.path.join(REPO_DIR, "README.md"), "r") as fh:
416+
with open(os.path.join(REPO_DIR, "README.md"), "r", encoding="utf-8") as fh:
417417
long_description = fh.read()
418418

419419
"""

0 commit comments

Comments
 (0)