FEniCS / ufl

UFL - Unified Form Language
https://fenicsproject.org
GNU Lesser General Public License v3.0
97 stars 64 forks source link

Use `cache` instead of `lru_cache` once minimum python version is >=3.9 #272

Closed mscroggs closed 4 months ago

mscroggs commented 4 months ago

271 uses functools to cache the results of apply_restrictions. From Python 3.9 onwards, we can usefunctools.cacheinstead offunctools.lru_cache`.

Python 3.8 end of life is October 2024.

mscroggs commented 4 months ago

closing as it looks like we need custom caching to avoid memory leaks