From 2e5af001525f4070f20da9bc16acd07f004653af Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Thu, 13 Oct 2022 14:39:17 +0200 Subject: [PATCH] Require pyjwt>=2.4.0 to avoid CVE-2022-29217 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index ae9478587a..bc82296fc8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ pynacl>=1.4.0 requests>=2.14.0 -pyjwt>=2.0 +pyjwt>=2.4.0 sphinx<3 Jinja2<3.1 sphinx-rtd-theme<1.1 diff --git a/setup.py b/setup.py index 0517f02f0f..5b2e1b1658 100755 --- a/setup.py +++ b/setup.py @@ -106,7 +106,7 @@ python_requires=">=3.6", install_requires=[ "deprecated", - "pyjwt>=2.0", + "pyjwt>=2.4.0", "pynacl>=1.4.0", "requests>=2.14.0", ],