Skip to content

Commit

Permalink
Review response
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Nov 24, 2023
1 parent 256b1ce commit f4e3417
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion py/client-ticking/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def _get_readme() -> str:
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
return (HERE / "README.md").read_text()
return (HERE / "README.md").read_text(encoding="utf-8")

def _normalize_version(java_version):
partitions = java_version.partition("-")
Expand Down
2 changes: 1 addition & 1 deletion py/client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def _get_readme() -> str:
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
return (HERE / "README.md").read_text()
return (HERE / "README.md").read_text(encoding="utf-8")

def _normalize_version(java_version):
partitions = java_version.partition("-")
Expand Down
2 changes: 1 addition & 1 deletion py/embedded-server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def _get_readme() -> str:
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
return (HERE / "README_PyPi.md").read_text()
return (HERE / "README_PyPi.md").read_text(encoding="utf-8")

def _normalize_version(java_version) -> str:
partitions = java_version.partition("-")
Expand Down
2 changes: 1 addition & 1 deletion py/server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def _get_readme() -> str:
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
return (HERE / "README.md").read_text()
return (HERE / "README.md").read_text(encoding="utf-8")

def _normalize_version(java_version) -> str:
partitions = java_version.partition("-")
Expand Down

0 comments on commit f4e3417

Please sign in to comment.