Skip to content
Open
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
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ tests = [
cov = [{ include-group = "tests" }, "coverage[toml]"]
pyright = ["pyright", { include-group = "tests" }]
ty = ["ty", { include-group = "tests" }]
pyrefly = ["pyrefly", { include-group = "tests" }]
pyrefly = ["pyrefly>=1.2.0-dev.2", { include-group = "tests" }]
benchmark = [
{ include-group = "tests" },
"pytest-codspeed",
Expand All @@ -77,8 +77,8 @@ dev = [{ include-group = "tests" }, "ruff"]
exclude-newer = "1 week"

[tool.uv.exclude-newer-package]
# Need latest ABI wheels for 3.15. Remove 2026-07-18.
hypothesis = false
pyrefly = false
hypothesis = false # Need latest ABI wheels for 3.15. Remove 2026-07-18.


[tool.hatch.version]
Expand Down Expand Up @@ -327,7 +327,12 @@ showcontent = true
pretty = true
disallow_untyped_defs = true
check_untyped_defs = true
exclude = ["typing-examples/pyrefly.py"]


[tool.pyright]
include = ["typing-examples/baseline.py"]


[tool.pyrefly]
project-includes = ["typing-examples"]
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ commands = ty check typing-examples/baseline.py

[testenv:typing-pyrefly]
dependency_groups = pyrefly
commands = pyrefly check typing-examples/baseline.py
commands = pyrefly check


[testenv:docset]
Expand Down
Loading