Skip to content
Draft
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
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ readme = "README.md"
requires-python = ">= 3.9"
dependencies = [
"huggingface_hub>=0.26.0,<2.0",
"numpy>=2.0.2",
"packaging>=20.0",
"pyyaml>=6",
"requests>=2.32.5",
"tomli>=2.0; python_version<'3.11'",
"torch>=2.8.0",
]

[build-system]
Expand All @@ -30,7 +33,8 @@ dev = [
# Whatever version is compatible with pytest.
"pytest-benchmark",
"torch>=2.5",
"types-pyyaml"
"types-pyyaml",
"types-requests",
]

[project.optional-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions src/kernels/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
install_kernel,
load_kernel,
)
from kernels.benchmark import Benchmark


from kernels._windows import _add_additional_dll_paths
Expand All @@ -36,6 +37,7 @@

__all__ = [
"__version__",
"Benchmark",
"CUDAProperties",
"Device",
"FuncRepository",
Expand Down
Loading
Loading