From 7dc7314fbc5145b18fb7c91a117789a1187402bd Mon Sep 17 00:00:00 2001 From: Stephen Daves Date: Mon, 1 May 2023 11:11:34 -0400 Subject: [PATCH] Security Update: Upgrade typing-extensions to 4.0.0.0 There are several new tools that only support typing-extensions >= 4.0, and the 3.0 version has no security updates in the last 2 years. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5034b50e..11e3dbfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ include = ["src/pfun/py.typed", "src/pfun/*.c"] [tool.poetry.dependencies] python = ">= 3.7, < 3.11" -typing-extensions = "^3.10.0.0" +typing-extensions = ">= 4.0.0, < 5.0.0" aiohttp = {extras = ["speedups"], version = "^3.7.4", optional = true} asyncpg = {version = "^0.23.0", optional = true} hypothesis = {version = "^6.8.5", optional = true}