File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
ExternalPlugins/Environments Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -103,3 +103,4 @@ Português
103
103
Português (Brasil)
104
104
Italiano
105
105
Slovenský
106
+ Droplex
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,8 +30,9 @@ internal override void InstallEnvironment()
30
30
{
31
31
FilesFolders . RemoveFolderIfExists ( InstallPath ) ;
32
32
33
- // Python 3.8.9 is used for Windows 7 compatibility
34
- DroplexPackage . Drop ( App . python_3_8_9_embeddable , InstallPath ) . Wait ( ) ;
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
35
+ DroplexPackage . Drop ( App . python_3_11_4_embeddable , InstallPath ) . Wait ( ) ;
35
36
36
37
PluginsSettingsFilePath = ExecutablePath ;
37
38
}
Original file line number Diff line number Diff line change 53
53
</ItemGroup >
54
54
55
55
<ItemGroup >
56
- <PackageReference Include =" Droplex" Version =" 1.6 .0" />
56
+ <PackageReference Include =" Droplex" Version =" 1.7 .0" />
57
57
<PackageReference Include =" FSharp.Core" Version =" 7.0.300" />
58
58
<PackageReference Include =" Microsoft.IO.RecyclableMemoryStream" Version =" 2.3.2" />
59
59
<PackageReference Include =" squirrel.windows" Version =" 1.5.2" NoWarn =" NU1701" />
You can’t perform that action at this time.
0 commit comments