From 1b906b760e0a1c529c92283dc80d452e73c90efc Mon Sep 17 00:00:00 2001 From: Stuart Longland Date: Sun, 26 Apr 2020 09:25:19 +1000 Subject: [PATCH] README.md: Project now requires Python 3.4. Last commit I added `yield from`, which is a Python 3.4 feature. I had intended to retain Python 2.7 syntax, and I guess if that's really wanted, we can change that `yield from` to a `yield`, but right now I'm thinking: onward and upwards. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dd0c6e2..b964c3a 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ Feeds are parsed using the [feedparser](https://pypi.python.org/pypi/feedparser/ module, and a composite RSS feed is generated using [feedgenerator](https://pypi.python.org/pypi/feedgenerator). -The code works on both Python 2.7 and 3.4. It has been exclusively developed -and tested on Linux. It should work with anything that understands POSIX. +The code works on 3.4 and above. It has been exclusively developed and tested +on Linux. It should work with anything that understands POSIX. Contributing