This repository was archived by the owner on Jul 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +19
-19
lines changed Expand file tree Collapse file tree 7 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ def install_for_development(self):
255
255
setup (
256
256
cmdclass = cmdclass ,
257
257
name = "pythonnet" ,
258
- version = "3.0.0.dev1 " ,
258
+ version = "3.0.0.dev2 " ,
259
259
description = ".Net and Mono integration for Python" ,
260
260
url = "https://pythonnet.github.io/" ,
261
261
license = "MIT" ,
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >net472;netcoreapp3.1 </TargetFrameworks >
3
+ <TargetFrameworks >net472;netcoreapp5.0 </TargetFrameworks >
4
4
<Platforms >x64;x86</Platforms >
5
5
<OutputType >Exe</OutputType >
6
6
<AssemblyName >nPython</AssemblyName >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net472;netcoreapp3.1 </TargetFrameworks >
4
+ <TargetFrameworks >net472;netcoreapp5.0 </TargetFrameworks >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
Original file line number Diff line number Diff line change 12
12
<PrivateAssets >all</PrivateAssets >
13
13
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
14
14
</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" />
24
21
</ItemGroup >
25
22
26
23
<Target Name =" GetRuntimeLibBuildOutput" BeforeTargets =" Build" >
29
26
</MSBuild >
30
27
</Target >
31
28
29
+ <!--
32
30
<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" />
34
32
</Target>
33
+ -->
35
34
36
35
<Target Name =" CopyNewBuild" AfterTargets =" Build" >
37
36
<Copy SourceFiles =" @(NewPythonRuntime)" DestinationFolder =" $(OutDir)\new" />
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net472;netcoreapp3.1 </TargetFrameworks >
4
+ <TargetFrameworks >net472;netcoreapp5.0 </TargetFrameworks >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
8
8
<ProjectReference Include =" ..\runtime\Python.Runtime.csproj" />
9
9
</ItemGroup >
10
10
11
11
<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 " >
14
14
<PrivateAssets >all</PrivateAssets >
15
15
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
16
16
</PackageReference >
Original file line number Diff line number Diff line change 27
27
</ItemGroup >
28
28
29
29
<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" />
32
33
</ItemGroup >
33
34
</Project >
Original file line number Diff line number Diff line change 2
2
Code in this module gets loaded into the main clr module.
3
3
"""
4
4
5
- __version__ = "3.0.0dev "
5
+ __version__ = "3.0.0dev2 "
6
6
7
7
8
8
class clrproperty (object ):
You can’t perform that action at this time.
0 commit comments