You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Releases a new stable version (e.g., v0.7.0) roughly every week.
122
+
- Starting from v0.4.0 patch versions will be used for fixes backported onto the current stable release.
123
+
- Minor versions will be used for releases off the master branch.
124
+
- Patch versions may still be used for releases on the master branch in cases where a backport would not make sense.
122
125
- Commits outside of the stable release tags may be very unstable and break many custom nodes.
123
126
- Serves as the foundation for the desktop release
124
127
@@ -209,6 +212,8 @@ Python 3.14 works but you may encounter issues with the torch compile node. The
209
212
210
213
Python 3.13 is very well supported. If you have trouble with some custom node dependencies on 3.13 you can try 3.12
211
214
215
+
torch 2.4 and above is supported but some features might only work on newer versions. We generally recommend using the latest major version of pytorch unless it is less than 2 weeks old.
# if multiple conds, split based on primary region
144
144
ifself.split_conds_to_windowsandlen(cond_in) >1:
145
145
region=window.get_region_index(len(cond_in))
146
-
logging.info(f"Splitting conds to windows; using region {region} for window {window[0]}-{window[-1]} with center ratio {window.center_ratio:.3f}")
146
+
logging.info(f"Splitting conds to windows; using region {region} for window {window.index_list[0]}-{window.index_list[-1]} with center ratio {window.center_ratio:.3f}")
147
147
cond_in= [cond_in[region]]
148
148
# cond object is a list containing a dict - outer list is irrelevant, so just loop through it
0 commit comments