Skip to content

Commit

Permalink
Make: Read UTF8 README on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Mar 24, 2024
1 parent ecb4948 commit a49d17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def get_bool_env_w_name(name: str, preference: bool) -> tuple:
__lib_name__ = "usearch"

this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md")) as f:
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()

# Depending on the macros, adjust the include directories
Expand Down

0 comments on commit a49d17e

Please sign in to comment.