pythononwheels / pow_devel

development repo for PyhtonOnWheels framework
www.pythononwheels.org
MIT License
75 stars 10 forks source link

Dash integration with pythononwheels is broken due to Werkzeug #51

Closed smoy closed 2 years ago

smoy commented 2 years ago

With pythononwheels==0.925.51, the dash tutorial is broken due to unpinned dependency on Werkzeug

cited on https://github.com/plotly/dash/issues/1992

Nothing specific with pythononwheels; however, for someone to follow the current dash on pythononwheels will fail.

In order to workaround the problem, I have to pip install a compatible version

pip install Werkzeug==2.0.3

pythononwheels commented 2 years ago

Hi @smoy, thanks for the info. I will pin Werkzeug==2.0.3 to the requirements.

pythononwheels commented 2 years ago

merged your pull request. Thanks again for the info and solution.