mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-08-05 10:13:05 +00:00
adding encoding specifier to open().read() call in order to prevent the windows UnicodeDecodeError
This commit is contained in:
parent
e86271aeac
commit
e0d52d7bec
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -26,7 +26,7 @@ setup(
|
||||||
"install-wheel-from-presigned = llama_stack.cli.scripts.run:install_wheel_from_presigned",
|
"install-wheel-from-presigned = llama_stack.cli.scripts.run:install_wheel_from_presigned",
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
long_description=open("README.md").read(),
|
long_description=open("README.md", encoding='utf-8').read(),
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/meta-llama/llama-stack",
|
url="https://github.com/meta-llama/llama-stack",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue