Skip to content

fix PySide2 dependency#37

Open
AydinChavez wants to merge 1 commit into
Widdershin:masterfrom
AydinChavez:master
Open

fix PySide2 dependency#37
AydinChavez wants to merge 1 commit into
Widdershin:masterfrom
AydinChavez:master

Conversation

@AydinChavez

Copy link
Copy Markdown

This fixes following error during pip install:

ERROR: Could not find a version that satisfies the requirement PySide2==5.15.2 (from webui) (from versions: 0.0.0a1, 5.11.0, 5.11.1, 5.11.2, 5.12.0, 5.12.1, 5.12.2, 5.12.3, 5.12.4, 5.12.5, 5.12.6, 5.13.0, 5.13.1, 5.13.2, 5.15.2.1)
ERROR: No matching distribution found for PySide2==5.15.2

@eissar

eissar commented Sep 19, 2022

Copy link
Copy Markdown

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants