Skip to content

Commit

Permalink
Merge pull request #56 from eoyilmaz/55-pip-install-timecode-unicoded…
Browse files Browse the repository at this point in the history
…ecodeerror-cp950-codec-cant-decode-byte-0xc3-in-position-9097-illegal-multibyte-sequence

[#55] Fix encoding issue in `setup.py`.
  • Loading branch information
eoyilmaz authored Jul 8, 2024
2 parents fa64212 + 5c60571 commit 7f2b134
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def read_file(file_path):
Returns:
str: The file content.
"""
with open(file_path) as f:
with open(file_path, encoding="utf-8") as f:
data = f.read()
return data

Expand Down
2 changes: 1 addition & 1 deletion timecode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# THE SOFTWARE.

__name__ = "timecode"
__version__ = "1.3.2"
__version__ = "1.4.1"
__description__ = "SMPTE Time Code Manipulation Library"
__author__ = "Erkan Ozgur Yilmaz"
__author_email__ = "[email protected]"
Expand Down

0 comments on commit 7f2b134

Please sign in to comment.