- rawdog 2.23
+rawdog now requires Python 2.7. Python 2.6 doesn't build with current
+toolchains, and hasn't been included in Debian for several releases, so
+I can't test against it any more.
+
When automatically updating the config file in response to an HTTP
redirect fails, produce a more sensible error message (including the URL
of the feed in question).
rawdog has the following dependencies:
-- Python 2.6 or later (but not Python 3)
+- Python 2.7 or later (but not Python 3)
- feedparser 5.1.2 or later
- PyTidyLib 0.2.1 or later (optional but strongly recommended)
from distutils.core import setup
import sys
-if sys.version_info < (2, 6) or sys.version_info >= (3,):
- print("rawdog requires Python 2.6 or later, and not Python 3.")
+if sys.version_info < (2, 7) or sys.version_info >= (3,):
+ print("rawdog requires Python 2.7 or later, and not Python 3.")
sys.exit(1)
setup(name="rawdog",