flask-allows
flask-allows copied to clipboard
Flask 2.0 support
With flask 2.0 now out, flask._compat
has been removed, so this module fails to build.
As suggested in this issue, a fix could be to change the import in flask_allows/requirements.py
from
from flask._compat import with_metaclass
to
from six import with_metaclass
Any chance we could get this change released in a new version to be compatible with flask 2.0? Would really appreciate it.
Thanks!