From 654917a96b9d36c0498b7bd344e1487a6cfa1966 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Sat, 4 Jul 2020 13:45:23 -0700 Subject: fix unsupported python versions --- ReleaseConfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ReleaseConfig b/ReleaseConfig index e4ec4f3..d1a9ebc 100755 --- a/ReleaseConfig +++ b/ReleaseConfig @@ -38,8 +38,8 @@ version_tuple = (4,0,0) # when that version is used. Python versions prior to deprecate_python_version # cause a warning to be issued (assuming it's not disabled). These values are # mandatory and must be present in the configuration file. -unsupported_python_version = (2, 7, 0) -deprecated_python_version = (2, 7, 0) +unsupported_python_version = (3, 4, 0) +deprecated_python_version = (3, 4, 0) # If release_date is (yyyy, mm, dd, hh, mm, ss), that is used as the release # date and time. If release_date is (yyyy, mm, dd), it is used for the -- cgit v0.12