Skip to content

Commit c28fbf1

Browse files
committed
Fix diffusers deprecated import issue
1 parent e94fb0a commit c28fbf1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies = [
2525
"trimesh[easy]",
2626
"albumentations",
2727
"scikit-learn",
28-
"diffusers>=0.25.0"
28+
"diffusers>=0.29.0"
2929
]
3030

3131
[project.optional-dependencies]

src/inference_core_nodes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__all__ = ("__version__", "NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS")
22

3-
__version__ = "0.4.1"
3+
__version__ = "0.4.2"
44

55

66
def _get_node_mappings():

0 commit comments

Comments
 (0)