Skip to content

Commit f421b16

Browse files
committed
Make cublas an optional dependency, remove torch/cublas as required deps, bump version
1 parent 3002f30 commit f421b16

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
99

1010
[project]
1111
name = "comfy-kitchen"
12-
version = "0.1.2"
12+
version = "0.1.3"
1313
description = "Fast Kernel Library for ComfyUI with multiple compute backends"
1414
readme = "README.md"
1515
requires-python = ">=3.10"
@@ -21,15 +21,15 @@ classifiers = [
2121
"Programming Language :: C++",
2222
"License :: OSI Approved :: Apache Software License",
2323
]
24-
dependencies = [
25-
"torch>=2.5.0",
26-
"nvidia-cublas>=13.0.0",
27-
]
24+
dependencies = []
2825

2926
[project.urls]
3027
Homepage = "https://github.com/comfyanonymous/ComfyKitchen"
3128

3229
[project.optional-dependencies]
30+
cublas = [
31+
"nvidia-cublas>=13.0.0",
32+
]
3333
dev = [
3434
"pytest>=7.0.0",
3535
"pytest-benchmark>=4.0.0",

0 commit comments

Comments
 (0)