Skip to content

Commit 5ca8e2f

Browse files
Update release workflow to python3.13 pytorch cu129 (Comfy-Org#9315)
* Try to reduce size of portable even more. * Update stable release workflow to python 3.13 cu129 * Update dependencies workflow to python3.13 cu129
1 parent 3294782 commit 5ca8e2f

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

.github/workflows/stable-release.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ on:
1212
description: 'CUDA version'
1313
required: true
1414
type: string
15-
default: "128"
15+
default: "129"
1616
python_minor:
1717
description: 'Python minor version'
1818
required: true
1919
type: string
20-
default: "12"
20+
default: "13"
2121
python_patch:
2222
description: 'Python patch version'
2323
required: true
2424
type: string
25-
default: "10"
25+
default: "6"
2626

2727

2828
jobs:
@@ -66,8 +66,13 @@ jobs:
6666
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
6767
./python.exe get-pip.py
6868
./python.exe -s -m pip install ../cu${{ inputs.cu }}_python_deps/*
69-
sed -i '1i../ComfyUI' ./python3${{ inputs.python_minor }}._pth
70-
cd ..
69+
sed -i '1i../ComfyUI' ./python3${{ inputs.python_minor }}._pth
70+
71+
rm ./Lib/site-packages/torch/lib/dnnl.lib #I don't think this is actually used and I need the space
72+
rm ./Lib/site-packages/torch/lib/libprotoc.lib
73+
rm ./Lib/site-packages/torch/lib/libprotobuf.lib
74+
75+
cd ..
7176
7277
git clone --depth 1 https://github.com/comfyanonymous/taesd
7378
cp taesd/*.safetensors ./ComfyUI_copy/models/vae_approx/

.github/workflows/windows_release_dependencies.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ on:
1717
description: 'cuda version'
1818
required: true
1919
type: string
20-
default: "128"
20+
default: "129"
2121

2222
python_minor:
2323
description: 'python minor version'
2424
required: true
2525
type: string
26-
default: "12"
26+
default: "13"
2727

2828
python_patch:
2929
description: 'python patch version'
3030
required: true
3131
type: string
32-
default: "10"
32+
default: "6"
3333
# push:
3434
# branches:
3535
# - master

.github/workflows/windows_release_package.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ jobs:
6666
sed -i '1i../ComfyUI' ./python3${{ inputs.python_minor }}._pth
6767
6868
rm ./Lib/site-packages/torch/lib/dnnl.lib #I don't think this is actually used and I need the space
69+
rm ./Lib/site-packages/torch/lib/libprotoc.lib
70+
rm ./Lib/site-packages/torch/lib/libprotobuf.lib
6971
cd ..
7072
7173
git clone --depth 1 https://github.com/comfyanonymous/taesd

0 commit comments

Comments
 (0)