Skip to content

Commit cc2b9dc

Browse files
committed
use python 3.8.9 embeddable
1 parent fde9ce9 commit cc2b9dc

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Flow.Launcher.Core/Flow.Launcher.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
</ItemGroup>
5454

5555
<ItemGroup>
56-
<PackageReference Include="Droplex" Version="1.2.0" />
56+
<PackageReference Include="Droplex" Version="1.3.0" />
5757
<PackageReference Include="FSharp.Core" Version="4.7.1" />
5858
<PackageReference Include="squirrel.windows" Version="1.5.2" />
5959
</ItemGroup>

Flow.Launcher.Core/Plugin/PluginsLoader.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,8 @@ public static IEnumerable<PluginPair> PythonPlugins(List<PluginMetadata> source,
209209
}
210210
else
211211
{
212-
DroplexPackage.Drop(App.python3_9_1).Wait();
212+
// Python 3.8.9 is used for Windows 7 compatibility
213+
DroplexPackage.Drop(App.python_3_8_9_embeddable, Path.Combine(DataLocation.DataDirectory(), "Python Embeddable")).Wait();
213214

214215
var installedPythonDirectory =
215216
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),

0 commit comments

Comments
 (0)