Tests fail for 3.7 and 3.8 Python versions
ArtyomVancyan opened this issue · 2 comments
ArtyomVancyan commented
The actual error is AttributeError: module 'functools' has no attribute 'cache'
, but functools
also should not have cached_property
.
- @functools.cache is available for 3.9 and higher versions of Python
- @functools.cached_property is available for 3.8 and higher versions of Python
PR:
ArtyomVancyan commented
This issue is fixed and tested on Windows platforms. The problem is related to GH actions, and it is described here.
ArtyomVancyan commented
GH-42 closes this issue.