From 91863ccf3371a5fa3aca409973d4bf42146bcb2d Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Thu, 2 Nov 2023 01:08:18 -0500 Subject: [PATCH] ci(dependencies): Update `cryptography` and pin `urllib3` --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9aa1ddc9..eba1e691 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,10 +28,11 @@ folders = [{ path = "auth0" }] [tool.poetry.dependencies] python = ">=3.7" aiohttp = "^3.8.5" +cryptography = "^41.0.5" # pyjwt has a weak dependency on cryptography pyjwt = "^2.8.0" -cryptography = "^41.0.3" # pyjwt has a weak dependency on cryptography pyopenssl = "^23.2.0" # pyopenssl is required to work with cryptography 41+ requests = "^2.31.0" +urllib3 = "^2.0.7" # requests has a weak dependency on urllib3 [tool.poetry.group.dev.dependencies] aioresponses = "^0.7.4"