Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Python.Included/Installer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public static class Installer
/// Name of the python directory. If needed, set before calling SetupPython().
/// Defaults to python-3.7.3-embed-amd64
/// </summary>
public static string InstallDirectory { get; set; } = "python-3.13.0-embed-amd64";
public static string InstallDirectory { get; set; } = "python-3.13.12-embed-amd64";

/// <summary>
/// The full path to the Python directory. Customize this by setting InstallPath and InstallDirectory
Expand Down Expand Up @@ -87,7 +87,7 @@ private static Python.Deployment.Installer.InstallationSource GetInstallationSou
return new Python.Deployment.Installer.EmbeddedResourceInstallationSource()
{
Assembly = typeof(PythonEnv).Assembly,
ResourceName = "python-3.13.0-embed-amd64.zip",
ResourceName = "python-3.13.12-embed-amd64.zip",
};
}

Expand Down
6 changes: 3 additions & 3 deletions Python.Included/Python.Included.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.13.0</Version>
<Version>3.13.12</Version>
<Authors>Meinrad Recheis and Python Software Foundation</Authors>
<Description>Python.Included is an automatic deployment mechanism for .NET packages which depend on the embedded Python distribution. This allows libraries depending on Python and/or Python packages to be deployed via Nuget without having to worry about any local Python installations.</Description>
<PackageLicenseUrl></PackageLicenseUrl>
Expand All @@ -20,11 +20,11 @@
</PropertyGroup>

<ItemGroup>
<None Remove="Resources\python-3.13.0-embed-amd64.zip" />
<None Remove="Resources\python-3.13.12-embed-amd64.zip" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="Resources\python-3.13.0-embed-amd64.zip" />
<EmbeddedResource Include="Resources\python-3.13.12-embed-amd64.zip" />
</ItemGroup>

<ItemGroup>
Expand Down
Binary file not shown.