Skip to content
This repository was archived by the owner on Jul 22, 2023. It is now read-only.

Commit b39491f

Browse files
committed
some updates
1 parent d5dcb1a commit b39491f

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def install_for_development(self):
255255
setup(
256256
cmdclass=cmdclass,
257257
name="pythonnet",
258-
version="3.0.0.dev1",
258+
version="3.0.0.dev2",
259259
description=".Net and Mono integration for Python",
260260
url="https://pythonnet.github.io/",
261261
license="MIT",

src/console/Console.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
3+
<TargetFrameworks>net472;netcoreapp5.0</TargetFrameworks>
44
<Platforms>x64;x86</Platforms>
55
<OutputType>Exe</OutputType>
66
<AssemblyName>nPython</AssemblyName>

src/embed_tests/Python.EmbeddingTest.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>net472;netcoreapp5.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

src/perf_tests/Python.PerformanceTests.csproj

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1414
</PackageReference>
15-
<PackageReference Include="nunit" Version="3.12.0" />
16-
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1">
17-
<PrivateAssets>all</PrivateAssets>
18-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
19-
</PackageReference>
20-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
21-
<PackageReference Include="pythonnet" Version="2.3.0" GeneratePathProperty="true">
22-
<IncludeAssets>compile</IncludeAssets>
23-
</PackageReference>
15+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
16+
<PackageReference Include="NUnit" Version="3.13.0" />
17+
</ItemGroup>
18+
19+
<ItemGroup>
20+
<ProjectReference Include="..\runtime\Python.Runtime.csproj" />
2421
</ItemGroup>
2522

2623
<Target Name="GetRuntimeLibBuildOutput" BeforeTargets="Build">
@@ -29,9 +26,11 @@
2926
</MSBuild>
3027
</Target>
3128

29+
<!--
3230
<Target Name="CopyBaseline" AfterTargets="Build">
33-
<Copy SourceFiles="$(Pkgpythonnet)\lib\net40\Python.Runtime.dll" DestinationFolder="$(OutDir)\baseline" />
31+
<Copy SourceFiles="$(Pkgpythonnet)\lib\net47\Python.Runtime.dll" DestinationFolder="$(OutDir)\baseline" />
3432
</Target>
33+
-->
3534

3635
<Target Name="CopyNewBuild" AfterTargets="Build">
3736
<Copy SourceFiles="@(NewPythonRuntime)" DestinationFolder="$(OutDir)\new" />

src/python_tests_runner/Python.PythonTestsRunner.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
4+
<TargetFrameworks>net472;netcoreapp5.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>
88
<ProjectReference Include="..\runtime\Python.Runtime.csproj" />
99
</ItemGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="NUnit" Version="3.*" />
13-
<PackageReference Include="NUnit3TestAdapter" Version="3.*">
12+
<PackageReference Include="NUnit" Version="3.13.0" />
13+
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>

src/runtime/Python.Runtime.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
</ItemGroup>
2828

2929
<ItemGroup>
30-
<PackageReference Include="System.Security.Permissions" Version="4.4.0" />
31-
<PackageReference Include="System.Reflection.Emit" Version="4.3.0" />
30+
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="5.0.0" />
31+
<PackageReference Include="System.Security.Permissions" Version="5.0.0" />
32+
<PackageReference Include="System.Reflection.Emit" Version="4.7.0" />
3233
</ItemGroup>
3334
</Project>

src/runtime/resources/clr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Code in this module gets loaded into the main clr module.
33
"""
44

5-
__version__ = "3.0.0dev"
5+
__version__ = "3.0.0dev2"
66

77

88
class clrproperty(object):

0 commit comments

Comments
 (0)