-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecated usage of python package in user.py #345
Comments
The version pinning of Flask leads to a version conflict with
This makes this issue more urgent. As downpinning of Flask is only needed for
|
Decided solution:
Then actinia API will be upgraded to |
The usage of recent versions of
itsdangerous
leads to following error:As mentioned
TimedJSONWebSignatureSerializer
is deprecated from v2.0.0 but Flask requiresitsdangerous>=2
also from v2.0.0, until this deprecated usage in actinia is fixed, the Flask version must be pinned to a version lower than that. EgFlask==1.1.4
. This then leads to:Which can be fixed by pinning
MarkupSafe==2.0.1
When the deprecated usage is removed, pinning of these versions can be undone (
Flask>=0.12.3
, no spcific mention ofMarkupSafe
)The text was updated successfully, but these errors were encountered: