Add UTF-8 Encoding in read_text.
This commit is contained in:
parent
241d608bbb
commit
c65a621b6b
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