Skip to content

Commit

Permalink
Specify UTF-8 encoding in setup.py to fix Windows build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
oldip committed Sep 21, 2024
1 parent 2a04aeb commit cc7980b
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 @@ -30,7 +30,7 @@
"HardNestedSolver/python.c"], include_dirs=include_dirs,
library_dirs=include_dirs, extra_compile_args=extra_compile_args, libraries=libraries)

with open("README.md", "r") as fh:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(name="FlipperNested", version="2.3.5", author="AloneLiberty",
Expand Down

0 comments on commit cc7980b

Please sign in to comment.