From d99d2d24393d1d28366e3766024e51a19a9d47b2 Mon Sep 17 00:00:00 2001 From: Pete Date: Tue, 2 Jul 2024 18:23:31 +0200 Subject: [PATCH] bug: Fix build error caused by missing comma in install_requires --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d08749c..8aa0104 100755 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ install_requires=[ "canonicalwebteam.yaml-responses[flask] (>=1,<2)", "flask==2.3.3", - "jinja2 >= 3.1.2 < 3.2.0", + "jinja2 >= 3.1.2, < 3.2.0", "gevent==21.12.0", "greenlet==1.1.2", "talisker[gunicorn,gevent,flask,prometheus,raven]",