From cee0623a86a9f9569afb867fbc0b614b05dae5f2 Mon Sep 17 00:00:00 2001 From: Actionless Loveless Date: Tue, 2 Jul 2024 02:00:39 +0200 Subject: [PATCH] fix(pyproject): make exceptiongroup conditional for python <3.11 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dcbe06f..64f5e2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ classifiers = [ [tool.poetry.dependencies] python = "^3.8" -exceptiongroup = "^1.0.0" +exceptiongroup = = {version = "^1.0.0", python = "<3.11"} [tool.poetry.dev-dependencies] pytest = "^8.2"