8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5134cbf + 3b5e34f commit 3e4ebacCopy full SHA for 3e4ebac
src/runtime/Python.Runtime.csproj
@@ -148,6 +148,7 @@
148
<Compile Include="interop34.cs" />
149
<Compile Include="interop35.cs" />
150
<Compile Include="interop36.cs" />
151
+ <Compile Include="interop37.cs" />
152
</ItemGroup>
153
<ItemGroup>
154
<None Include="..\pythonnet.snk" />
src/runtime/runtime.cs
@@ -149,7 +149,7 @@ public class Runtime
#elif PYTHON36
internal const string _pyversion = "3.6";
internal const string _pyver = "36";
-#elif PYTHON37 // TODO: Add `interop37.cs` after PY37 is released
+#elif PYTHON37
internal const string _pyversion = "3.7";
internal const string _pyver = "37";
155
#else
0 commit comments