Merge pull request #61 from jm12138/fix_windows_install
Add UTF-8 Encoding in read_text.
This commit is contained in:
commit
a5554a2f02
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ from skbuild import setup
|
|||
from pathlib import Path
|
||||
|
||||
this_directory = Path(__file__).parent
|
||||
long_description = (this_directory / "README.md").read_text()
|
||||
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
|
||||
|
||||
setup(
|
||||
name="llama_cpp_python",
|
||||
|
|
Loading…
Reference in a new issue