From 643977d370c896f371e1314d98266c55d205d276 Mon Sep 17 00:00:00 2001 From: Robin Candau Date: Fri, 25 Apr 2025 08:08:35 +0200 Subject: [PATCH] Bump h11 dependency version for critical security fix A critical CVE affecting h11 < 0.16.0 has been published: [CVE-2025-43859](https://github.com/advisories/GHSA-vqfr-h8mv-ghfj) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index db4d302..1a774f7 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,6 @@ 'Programming Language :: Python :: Implementation :: PyPy', ], install_requires=[ - 'h11>=0.13.0,<1', + 'h11>=0.16.0,<1', ], )