Skip to content

Commit

Permalink
update to 3.2 (#14937)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjkkirschner authored Feb 14, 2024
1 parent ed12cfa commit f20c50d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/DynamoCore/Configuration/PreferenceSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ public int NodeSearchTagSizeLimit
/// This property is not serialized and is assigned IronPythonResolveTargetVersion's value
/// if found at deserialize time.
/// </summary>
internal Version ironPythonResolveTargetVersion = new Version(3, 0, 0);
internal Version ironPythonResolveTargetVersion = new Version(3, 2, 0);

/// <summary>
/// The Version of the IronPython package that Dynamo will download when it is found as missing in graphs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void Loaded(ViewLoadedParams p)
{
LoadedParams = p;

var ironPythonVersion = new Version(3, 0, 0);
var ironPythonVersion = new Version(3, 2, 0);
if(LoadedParams.StartupParams.Preferences is PreferenceSettings prefs)
{
Version.TryParse(prefs.IronPythonResolveTargetVersion,out ironPythonVersion);
Expand Down

0 comments on commit f20c50d

Please sign in to comment.