Skip to content

Commit 70f7c4a

Browse files
committed
Update recommended python version to 3.11
1 parent 27bbe0c commit 70f7c4a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

StabilityMatrix.Core/Models/Packages/AiToolkit.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ IPyInstallationManager pyInstallationManager
5151
public override PackageType PackageType => PackageType.SdTraining;
5252
public override bool OfferInOneClickInstaller => false;
5353
public override bool ShouldIgnoreReleases => true;
54-
public override PyVersion RecommendedPythonVersion => Python.PyInstallationManager.Python_3_12_10;
54+
public override PyVersion RecommendedPythonVersion => Python.PyInstallationManager.Python_3_11_13;
5555

5656
public override IEnumerable<PackagePrerequisite> Prerequisites =>
5757
base.Prerequisites.Concat([PackagePrerequisite.Node]);

StabilityMatrix.Core/Models/Packages/ComfyZluda.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ IPyInstallationManager pyInstallationManager
4444

4545
public override TorchIndex GetRecommendedTorchVersion() => TorchIndex.Zluda;
4646

47-
public override PyVersion RecommendedPythonVersion => Python.PyInstallationManager.Python_3_11_9;
47+
public override PyVersion RecommendedPythonVersion => Python.PyInstallationManager.Python_3_11_13;
4848

4949
public override bool IsCompatible => HardwareHelper.PreferDirectMLOrZluda();
5050

StabilityMatrix.Core/Models/Packages/ForgeClassic.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ IPyInstallationManager pyInstallationManager
3535
public override PackageDifficulty InstallerSortOrder => PackageDifficulty.Recommended;
3636
public override IEnumerable<TorchIndex> AvailableTorchIndices => [TorchIndex.Cuda];
3737
public override bool IsCompatible => HardwareHelper.HasNvidiaGpu();
38-
public override PyVersion RecommendedPythonVersion => Python.PyInstallationManager.Python_3_11_9;
38+
public override PyVersion RecommendedPythonVersion => Python.PyInstallationManager.Python_3_11_13;
3939

4040
public override List<LaunchOptionDefinition> LaunchOptions =>
4141
[

StabilityMatrix.Core/Python/PyInstallationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class PyInstallationManager(IUvManager uvManager, ISettingsManager settin
1717
// Default Python versions - these are TARGET versions SM knows about
1818
public static readonly PyVersion Python_3_10_11 = new(3, 10, 11);
1919
public static readonly PyVersion Python_3_10_17 = new(3, 10, 17);
20-
public static readonly PyVersion Python_3_11_9 = new(3, 11, 9);
20+
public static readonly PyVersion Python_3_11_13 = new(3, 11, 13);
2121
public static readonly PyVersion Python_3_12_10 = new(3, 12, 10);
2222

2323
/// <summary>

0 commit comments

Comments
 (0)