From ab9a41df6aacf477331e87ed311ae93358c204a2 Mon Sep 17 00:00:00 2001 From: Grey Li Date: Fri, 8 Dec 2023 00:32:29 +0800 Subject: [PATCH] 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 "", line 1, in File "/opt/hostedtoolcache/Python/3.12.0/x64/lib/python3.12/site-packages/flask_debugtoolbar/__init__.py", line 6, in from packaging import version as version_builder ModuleNotFoundError: No module named 'packaging' Error: Process completed with exit code 1. ``` --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6bf3d8b..994ffda 100644 --- a/setup.py +++ b/setup.py @@ -9,5 +9,6 @@ 'itsdangerous', 'werkzeug', 'MarkupSafe', + 'packaging', ], )