We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e91f02b commit 5bad6a5Copy full SHA for 5bad6a5
memoization/memoization.py
@@ -10,7 +10,7 @@
10
11
# Public symbols
12
__all__ = ['cached', 'CachingAlgorithmFlag']
13
-__version__ = '0.3.0'
+__version__ = '0.3.1'
14
15
16
# Insert the algorithm flags to the global namespace for convenience
setup.py
@@ -1,7 +1,7 @@
1
from setuptools import setup, find_packages
2
from memoization.memoization import __version__ as memoization_version
3
4
-with open('README.md', 'r') as f:
+with open('README.md', 'r', encoding='utf8') as f:
5
long_description = f.read()
6
7
setup(
0 commit comments