From 6c345d57f5d212dc0dc3bf161a10e24ec285f6bc Mon Sep 17 00:00:00 2001 From: Scott Schneider Date: Thu, 20 Nov 2025 15:36:40 -0800 Subject: [PATCH] update gunicorn version requirement `>= 22.*` is invalid syntax, cannot use wildcard in "greater than" this was causing an error during `make venv`: ``` ERROR: Invalid requirement: 'gunicorn >= 22.*': .* suffix can only be used with `==` or `!=` operators gunicorn >= 22.* ``` --- chassis/k_api/app/requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chassis/k_api/app/requirements.txt b/chassis/k_api/app/requirements.txt index c9e345b..135db74 100644 --- a/chassis/k_api/app/requirements.txt +++ b/chassis/k_api/app/requirements.txt @@ -6,7 +6,7 @@ flask == 2.* # wsgi server # https://pypi.org/project/gunicorn/ -gunicorn >= 22.* +gunicorn == 22.* # YAML parser # https://pypi.org/project/PyYAML/ @@ -36,4 +36,4 @@ python-dateutil==2.9.0.post0 # Prometheus Flask Exporter prometheus_client -prometheus_flask_exporter \ No newline at end of file +prometheus_flask_exporter