pallets-eco / flask-debugtoolbar

A toolbar overlay for debugging Flask applications
https://flask-debugtoolbar.readthedocs.io
BSD 3-Clause "New" or "Revised" License
953 stars 146 forks source link

Remove deprecated Flask version attribute #243

Closed greyli closed 7 months ago

greyli commented 7 months ago

The flask.__version__ attr is deprecated and will be removed in the Flask 3.1 version. This PR replaced this attr to importlib.metadata.version.

We could remove the use of pkg_resources when we drop the Python 3.7 support.

Fix: https://github.com/pallets-eco/flask-debugtoolbar/issues/229