Add `lru_cache_disabled` pytest config option, which is an allowlist to selectively apply anti lru on specific modules. https://github.com/ipwnponies/pytest-antilru/pull/35
Dropped support for python 2.7, 3.5 to 3.7. Added support for python 3.10 to 3.13.
1.1.1
Fixed pytest plugin name https://github.com/ipwnponies/pytest-antilru/pull/23 This was registering as *name_of_plugin* in pytest (from plugin example): besides being incorrect, it readily conflicts with plugins who made the same mistake.
Thanks for Kache for noticing and contributing a fix!
1.1.0
Added support for python 3.8+. Python 3.8 functools.lru_cache added support for using as a plain decorator.
py lru_cache() def oldway(): ...
lru_cache def newway(): ...
1.0.5
Literally no change since 1.0.0. This release is for versioning reasons with the original, to-be-deprecated internal package.