Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,24 @@ ignore = [
]

[tool.mypy]
python_version = "3.10"
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
explicit_package_bases = true
files = ["hf_adapters/**/*.py"]

# sympy ships no py.typed marker (PEP 561), so mypy refuses to analyze it.
[[tool.mypy.overrides]]
module = "sympy.*"
ignore_missing_imports = true

# deepspec is an optional private package (DSpark speculative decoding);
# it is not installed in the standard dev environment.
[[tool.mypy.overrides]]
module = "deepspec.*"
ignore_missing_imports = true

[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
Expand Down Expand Up @@ -82,7 +89,7 @@ dev = [
"pre-commit>=3.5.0",
"black>=26.3.1",
"ruff>=0.15.6",
"mypy>=1.14.0,<2",
"mypy>=2.3.0,<3",
"typing-extensions",
"nicegui",
"clickhouse-connect>=1.4.1",
Expand Down
Loading
Loading