From f67bf70bb210dd34ba0a9f6ff8e0c0a9483b7c82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Tue, 1 Aug 2023 13:33:19 +0200 Subject: [PATCH] Relax the dependency bounds to newest compatible versions Relax the dependency bounds in `setup.py` to permit the newest versions that are compatible with the current httpbin code, that is permit the test suite to pass. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 803cb896..8918bbf6 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ packages=find_packages(), include_package_data = True, # include files listed in MANIFEST.in install_requires=[ - 'Flask<1.0.3', 'MarkupSafe<2.1', 'decorator', 'itsdangerous<2', 'brotlipy', - 'raven[flask]', 'werkzeug==0.14.1', 'gevent', 'flasgger', 'jinja2==2.10' + 'Flask<1.1', 'MarkupSafe<2.1', 'decorator', 'itsdangerous<2.1', 'brotlipy', + 'raven[flask]', 'werkzeug<0.15', 'gevent', 'flasgger', 'jinja2<3.1' ], )