From d23ad6d7d3403fb36fbca8eb781dea12a995b715 Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Sat, 16 May 2020 12:08:49 -0600 Subject: Bump unsupported/deperecated Py versions Signed-off-by: Mats Wichmann --- CHANGES.txt | 2 ++ SCons/Script/Main.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 431ecc1..fbcc2e8 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -144,6 +144,8 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER code restructuring (src/engine/SCons -> SCons) - Drop the with_metaclass jig which was designed to let class definitions using a metaclass be written the same for Py2/Py3. + - Bump python_version_unsupported (and deprecated) to indicate 3.5 + is lowest supported Python. diff --git a/SCons/Script/Main.py b/SCons/Script/Main.py index 62cd908..4673d6d 100644 --- a/SCons/Script/Main.py +++ b/SCons/Script/Main.py @@ -10,8 +10,8 @@ some other module. If it's specific to the "scons" script invocation, it goes here. """ -unsupported_python_version = (2, 6, 0) -deprecated_python_version = (2, 7, 0) +unsupported_python_version = (3, 4, 0) +deprecated_python_version = (3, 4, 0) # __COPYRIGHT__ -- cgit v0.12