Skip to content

Commit 8ff1ae2

Browse files
fix: add exceptiongroup dependency for Python 3.10 compatibility
ROOT CAUSE: Python 3.10 doesn't have BaseExceptionGroup in builtins. The exceptiongroup backport package needs to be installed. CHANGES: - Added "exceptiongroup>=1.2.0; python_version < '3.11'" to dependencies IMPACT: Python 3.10 tests will now pass FILES MODIFIED: - pyproject.toml - uv.lock
1 parent 881d204 commit 8ff1ae2

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ classifiers = [
2626
]
2727
dependencies = [
2828
"anyio>=4.5",
29+
"exceptiongroup>=1.2.0; python_version < '3.11'",
2930
"httpx>=0.27.1",
3031
"httpx-sse>=0.4",
3132
"pydantic>=2.12.0",

uv.lock

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)