Skip to content

Commit 455663e

Browse files
committed
update python version constraint
1 parent 908038a commit 455663e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

memoization/__init__.py

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

33
__all__ = ['cached', 'CachingAlgorithmFlag', 'FIFO', 'LRU', 'LFU']
44

5-
if (3, 4) <= sys.version_info <= (3, 10): # for Python 3.4, 3.5, 3.6, 3.7, 3.8, 3.9
5+
if (3, 4) <= sys.version_info < (4, 0): # for Python >=3.4 <4
66
from . import memoization as _memoization
77

88
try:

0 commit comments

Comments
 (0)