-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: PEP8 style stubs generation * Pin pythonnet version * Don't upper case PEP8 version of readonly fields * Upper case static readonly fields as constants * Bump pythonnet version to 2.0.31 * Ignore python keyword snake-case names
- Loading branch information
1 parent
2887a0a
commit 1e57691
Showing
6 changed files
with
108 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 16 additions & 15 deletions
31
QuantConnectStubsGenerator/QuantConnectStubsGenerator.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="log4net" Version="2.0.12" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.6.0" /> | ||
<PackageReference Include="QuikGraph" Version="2.3.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="log4net.config"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="log4net" Version="2.0.12" /> | ||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.6.0" /> | ||
<PackageReference Include="QuikGraph" Version="2.3.0" /> | ||
<PackageReference Include="QuantConnect.pythonnet" Version="2.0.31" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="log4net.config"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters