From 7db72b93efc0a0ec52db55e641b308ccb293c8ca Mon Sep 17 00:00:00 2001 From: Paulie Pena Date: Thu, 1 Nov 2018 13:24:55 -0400 Subject: [PATCH] adding iterop37.cs to Python.Runtime.csproj and removing old TODO comment, see #609, #720, and https://github.com/pythonnet/pythonnet/issues/609#issuecomment-433637591 --- src/runtime/Python.Runtime.csproj | 1 + src/runtime/runtime.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime/Python.Runtime.csproj b/src/runtime/Python.Runtime.csproj index d839272dc..d88d05860 100644 --- a/src/runtime/Python.Runtime.csproj +++ b/src/runtime/Python.Runtime.csproj @@ -148,6 +148,7 @@ + diff --git a/src/runtime/runtime.cs b/src/runtime/runtime.cs index 5938c8a9f..133557882 100644 --- a/src/runtime/runtime.cs +++ b/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"; #else