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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ dev = [
"pytest>=9.0.3; python_version >= '3.10'",
"pytest-asyncio>=0.23",
"ruff>=0.15.22,<0.17",
"pyright==1.1.411",
"pyright==1.1.413",
]
# Everything needed to run the general offline gate in CI (lint + all safe extras-gated
# tests) WITHOUT pulling torch/sentence-transformers — no test needs the real embedder.
Expand All @@ -171,7 +171,7 @@ test = [
"pytest>=9.0.3; python_version >= '3.10'",
"pytest-asyncio>=0.23",
"ruff>=0.15.22,<0.17",
"pyright==1.1.411",
"pyright==1.1.413",
"python-dotenv>=1.0",
"uvicorn[standard]>=0.29",
"fastapi>=0.133.1,<1; python_version >= '3.10'",
Expand Down
5 changes: 4 additions & 1 deletion tests/test_release_infrastructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,10 @@ def test_pyright_core_backend_ratchet_is_pinned_and_runs_in_ci_and_release():
ci = _text(".github/workflows/ci.yml")
release = _text(".github/workflows/release.yml")

assert pyproject.count('"pyright==1.1.411"') == 2
# Keep the dev and test extras on one exact, Dependabot-updatable Pyright pin.
pyright_pins = re.findall(r'"(pyright==[^"\n]+)"', pyproject)
assert len(pyright_pins) == 2
assert pyright_pins[0] == pyright_pins[1]
assert '"engraphis/core",\n "engraphis/backends",' in pyproject
assert '"eval/harness.py",\n "eval/external.py",' in pyproject
assert 'pythonVersion = "3.9"' in pyproject
Expand Down