Skip to content

Commit

Permalink
fix(setup.py): Encoding error for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
MrKevinWeiss committed Feb 12, 2021
1 parent 3488d80 commit 859a152
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mm_pal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

__author__ = "Kevin Weiss"
__email__ = "[email protected]"
__version__ = "1.1.1"
__version__ = "1.1.2"

__all__ = ['MmIf',
'MmCmd',
Expand Down
2 changes: 1 addition & 1 deletion mock_pal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

__author__ = "Kevin Weiss"
__email__ = "[email protected]"
__version__ = "1.1.1"
__version__ = "1.1.2"

__all__ = ['MockIf',
'VirtualPortRunner',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

PACKAGE = 'mm_pal'

with open("README.md", "r") as fh:
with open("README.md", "r", encoding="utf8") as fh:
LONG_DESCRIPTION = fh.read()


Expand Down

0 comments on commit 859a152

Please sign in to comment.