Open Praseetha-KR opened 4 years ago
/jobtastic/cache/__init__.py:23: DeprecationWarning:'werkzeug.contrib.cache' is deprecated as of version 0.15 and will be removed in version 1.0. It has moved to https://github.com/pallets/cachelib.
Werkzerug has removed contrib.cache from the main package, and is now being maintained as cachelib
contrib.cache
cachelib
So If an app is using werkzeug >= 1.0, jobtastic's Werkzeug cache will remain unused.
werkzeug >= 1.0
Werkzeug
This PR switches jobtastic to support cachelib instead of werkzeug.contrib.cache.
werkzeug.contrib.cache
Werkzerug has removed
contrib.cache
from the main package, and is now being maintained ascachelib
So If an app is using
werkzeug >= 1.0
, jobtastic'sWerkzeug
cache will remain unused.This PR switches jobtastic to support
cachelib
instead ofwerkzeug.contrib.cache
.