Skip to content

Commit

Permalink
Drop exceptiongroup dependency in Python 3.11 and later
Browse files Browse the repository at this point in the history
All of the imports are already conditionalized on the Python interpreter
version; there is no need to install this backport package on current
interpreters.
  • Loading branch information
musicinmybrain authored and pgjones committed May 25, 2024
1 parent 751f6d2 commit 0a23657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ documentation = "https://hypercorn.readthedocs.io"
[tool.poetry.dependencies]
python = ">=3.8"
aioquic = { version = ">= 0.9.0, < 1.0", optional = true }
exceptiongroup = ">= 1.1.0"
exceptiongroup = { version = ">= 1.1.0", python = "<3.11" }
h11 = "*"
h2 = ">=3.1.0"
priority = "*"
Expand Down

0 comments on commit 0a23657

Please sign in to comment.