From 515fb2ce57c6c4731c3bece1b7cfe3624aba6133 Mon Sep 17 00:00:00 2001 From: exarkun <> Date: Fri, 15 Mar 2019 17:07:37 +0000 Subject: [PATCH] python 2.6 is no more [Imported from Trac: page CodingStandards, version 31] --- CodingStandards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodingStandards.md b/CodingStandards.md index 6976181..9d6295d 100644 --- a/CodingStandards.md +++ b/CodingStandards.md @@ -5,7 +5,7 @@ Here are some Python code style guidelines. We also include official Python guid ## Basic standards ### Compatibility -Tahoe requires Python v2.6.6 or greater (although the current code only refuses to run on Python < 2.6). No effort should be made to offer compatibility with versions of Python older than 2.6.6. Effort should be made to work with every Python release from v2.6.6 to the most recent 2.x, inclusive. +Tahoe requires Python v2.7.13 or greater (although the current code only refuses to run on Python < 2.7). No effort should be made to offer compatibility with versions of Python older than 2.7.13. Effort should be made to work with every Python release from v2.7.13 to the most recent 2.x, inclusive. ### Naming and Layout