File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Flow.Launcher.Core/ExternalPlugins/Environments Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ internal class PythonEnvironment : AbstractPluginEnvironment
16
16
17
17
internal override string EnvPath => Path . Combine ( DataLocation . PluginEnvironmentsPath , EnvName ) ;
18
18
19
- internal override string InstallPath => Path . Combine ( EnvPath , "PythonEmbeddable-v3.8.9 " ) ;
19
+ internal override string InstallPath => Path . Combine ( EnvPath , "PythonEmbeddable-v3.11.4 " ) ;
20
20
21
21
internal override string ExecutablePath => Path . Combine ( InstallPath , "pythonw.exe" ) ;
22
22
@@ -30,7 +30,8 @@ internal override void InstallEnvironment()
30
30
{
31
31
FilesFolders . RemoveFolderIfExists ( InstallPath ) ;
32
32
33
- // Python 3.8.9 is used for Windows 7 compatibility
33
+ // Python 3.11.4 is no longer Windows 7 compatible. If user is on Win 7 and
34
+ // uses Python plugin they need to custom install and use v3.8.9
34
35
DroplexPackage . Drop ( App . python_3_11_4_embeddable , InstallPath ) . Wait ( ) ;
35
36
36
37
PluginsSettingsFilePath = ExecutablePath ;
You can’t perform that action at this time.
0 commit comments