[Answered ]-Django–>TypeError: __init__() got an unexpected keyword argument 'providing_args'

1👍

It really looks like the cacheops package in version 6.0.0 still passes a keyword argument providing_args that was apparently supported up to Django 2.2 (docs), but definitely no longer in the current Django 4.1 (docs). Cacheops fixed this on 2021-02-19 (github commit), so you definitely need a version newer than that.

Leave a comment