Skip to content

Commit 5bad6a5

Browse files
committed
fix encoding
1 parent e91f02b commit 5bad6a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

memoization/memoization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# Public symbols
1212
__all__ = ['cached', 'CachingAlgorithmFlag']
13-
__version__ = '0.3.0'
13+
__version__ = '0.3.1'
1414

1515

1616
# Insert the algorithm flags to the global namespace for convenience

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
from memoization.memoization import __version__ as memoization_version
33

4-
with open('README.md', 'r') as f:
4+
with open('README.md', 'r', encoding='utf8') as f:
55
long_description = f.read()
66

77
setup(

0 commit comments

Comments
 (0)