From 30f24500da7e8b1a29599ddbb9a8c142e8a3760b Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 30 May 2023 17:06:11 -0400 Subject: [PATCH] fix: missing dependency on Python 3.10 (#370) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bd496db8..c0d65dd3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,7 @@ readme = "README.md" [tool.poetry.dependencies] python = ">= 3.7" attrs = ">= 20" -typing_extensions = { version = "*", python = "< 3.10" } +typing_extensions = { version = "*", python = "< 3.11" } exceptiongroup = { version = "*", python = "< 3.11" } ujson = { version = "^5.4.0", optional = true } orjson = { version = "^3.5.2", markers = "implementation_name == 'cpython'", optional = true }