Skip to content

Commit

Permalink
[#55] Fix encoding issue in setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
eoyilmaz committed Jul 8, 2024
1 parent da2315e commit 5c60571
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.4.0"
__version__ = "1.4.1"
__description__ = "SMPTE Time Code Manipulation Library"
__author__ = "Erkan Ozgur Yilmaz"
__author_email__ = "eoyilmaz@gmail.com"
Expand Down

0 comments on commit 5c60571

Please sign in to comment.