Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def mypy_plugins():
"""Run mypy type checks on all plugins."""
click.echo("Running mypy on plugins...")
run(
"uv run mypy --install-types --non-interactive --exclude 'plugins/[^/]+/tests/' --exclude 'plugins/getstream/.*/sfu_events\\.py' plugins",
"uv run mypy --install-types --non-interactive --exclude 'plugins/[^/]+/tests/' --exclude 'plugins/getstream/.*/sfu_events\\.py' --exclude 'plugins/getstream/_generate_sfu_events\\.py' plugins",
)


Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ exclude = [
[dependency-groups]
dev = [
"ruff",
"mypy[mypyc,faster-cache]",
"mypy[mypyc,faster-cache]>=1.19,<1.20", # TODO: unpin later, need to update code before using 1.20
"pip>=25.2",
"pytest",
"pytest-xdist",
"pytest-asyncio",
"python-dotenv",
"pre-commit",
"scalene>=1.5.54",
"fastmcp>=2.14.0",
"fastmcp>=3.2.0",
"opentelemetry-exporter-otlp>=1.37.0",
"pytest-timeout>=2.4.0",
"hatch-vcs>=0.5.0",
Expand All @@ -118,7 +118,6 @@ dev = [
"pyinstrument>=5.1.1",
"toml>=0.10.2",
"asgi-lifespan>=2.1.0",
"mistralai[realtime]>=1.12.0",
"testcontainers[redis]>=4.0.0",
"redis[hiredis]>=5.0.0",
]
Expand Down
Loading
Loading