Open AydinChavez opened 2 years ago
This fixed the issue for me. However I had to change a line in
flask.sessions line 14 from collections import MutableMapping
to:
if sys.version_info[:2] >= (3, 8): from collections.abc import MutableMapping else: from collections import MutableMapping
so that it would build
the newest flask module seems to be updated with that change on the github page
This fixes following error during pip install: