From 065d8d529608c7881ebc48c799886113a49c658d Mon Sep 17 00:00:00 2001 From: Mohamed Koubaa Date: Thu, 17 Sep 2020 20:48:49 -0500 Subject: [PATCH] really remove old versions --- src/perf_tests/Python.PerformanceTests.csproj | 2 +- src/runtime/runtime.cs | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/perf_tests/Python.PerformanceTests.csproj b/src/perf_tests/Python.PerformanceTests.csproj index 25af89db0..f84e556aa 100644 --- a/src/perf_tests/Python.PerformanceTests.csproj +++ b/src/perf_tests/Python.PerformanceTests.csproj @@ -28,7 +28,7 @@ - + diff --git a/src/runtime/runtime.cs b/src/runtime/runtime.cs index 7acdc0f7e..2d523758b 100644 --- a/src/runtime/runtime.cs +++ b/src/runtime/runtime.cs @@ -43,18 +43,14 @@ public class Runtime #error You must define either UCS2 or UCS4! #endif -#if PYTHON34 - const string _minor = "4"; -#elif PYTHON35 - const string _minor = "5"; -#elif PYTHON36 +#if PYTHON36 const string _minor = "6"; #elif PYTHON37 const string _minor = "7"; #elif PYTHON38 const string _minor = "8"; #else -#error You must define one of PYTHON34 to PYTHON38 +#error You must define one of PYTHON36 to PYTHON38 #endif #if WINDOWS