Skip to content

Commit 84eb6f7

Browse files
committed
fix(runtime,client): event loop closed on Python 3.12+ (#117)
1 parent 752d098 commit 84eb6f7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "comfy-script"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "A Python frontend and library for ComfyUI"
55
readme = "README.md"
66
# ComfyUI: >=3.8
@@ -27,7 +27,7 @@ client = [
2727
"yarl",
2828

2929
# 1.5.9: https://github.com/erdewit/nest_asyncio/issues/87
30-
"nest_asyncio2 ~= 1.0, >= 1.5.9",
30+
"nest_asyncio2 ~= 1.0, >= 1.6.3",
3131

3232
# Already required by ComfyUI
3333
"Pillow",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
aiohttp
44

55
# 1.5.9: https://github.com/erdewit/nest_asyncio/issues/87
6-
nest_asyncio2 ~= 1.0, >= 1.5.9
6+
nest_asyncio2 ~= 1.0, >= 1.6.3
77

88

99
# Transpiler

0 commit comments

Comments
 (0)