virtualvinodh / aksharamukha-python

Aksharamukha Python Library
GNU Affero General Public License v3.0
43 stars 15 forks source link

`functools.cache` is available only from Python3.9 #6

Closed GokulNC closed 6 months ago

GokulNC commented 1 year ago

The recent release 2.1 does not seem to work with any python version < 3.9

AttributeError: module 'functools' has no attribute 'cache'

Solution: https://stackoverflow.com/a/70301476/

virtualvinodh commented 10 months ago

I suppose I can just replace cache with lru_cache?

V

virtualvinodh commented 6 months ago

Fixed.