We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While deploying this demo app, I got various errors:
The conflict is caused by: The user requested Werkzeug==2.2.3 flask 2.3.2 depends on Werkzeug>=2.3.3
and
AttributeError: module 'flask.json' has no attribute 'JSONEncoder'
My workaround was to use older packages in requirements.txt:
requirements.txt
Flask==2.2.5 Werkzeug==2.2.3
After using this older Flask, I was able to deploy to aptible
The text was updated successfully, but these errors were encountered:
I had the same issue. I upgraded Werkzeug instead.
Sorry, something went wrong.
Your workaround is better. It turns out Werkzeug 2.3.3 is incompatible with Flask 2.3.2.
No branches or pull requests
While deploying this demo app, I got various errors:
and
My workaround was to use older packages in
requirements.txt
:After using this older Flask, I was able to deploy to aptible
The text was updated successfully, but these errors were encountered: