2 Commits

Author SHA1 Message Date
Jeff Widman
2f8ec9027b Bump to version 0.14.1 (#227) 2023-12-07 09:31:28 -08:00
Grey Li
ab9a41df6a Add the missing install requirement packaging (#225)
The `packaging` lib is not listed in the `install_requires` list.

https://github.com/greyli/flask-extension-status/actions/runs/7129071225/job/19412328108

```
Run python -c "from flask import Flask; app = Flask(__name__); from flask_debugtoolbar import DebugToolbarExtension; DebugToolbarExtension(app)"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/opt/hostedtoolcache/Python/3.12.0/x64/lib/python3.12/site-packages/flask_debugtoolbar/__init__.py", line 6, in <module>
    from packaging import version as version_builder
ModuleNotFoundError: No module named 'packaging'
Error: Process completed with exit code 1.
```
2023-12-07 08:32:29 -08:00
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
[metadata]
name = Flask-DebugToolbar
version = 0.14.0
version = 0.14.1
author = Michael van Tellingen
author_email = michaelvantellingen@gmail.com
maintainer = Matt Good

View File

@@ -9,5 +9,6 @@ setup(
'itsdangerous',
'werkzeug',
'MarkupSafe',
'packaging',
],
)