X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=roundup%2Fversion_check.py;h=5f6f2be38aff7604182e253dc566ef39d9788660;hb=c2760e668d93a49bcc08a62bc0ef8452986b8886;hp=8dfc68e95d8ca5d64c408beec4063b800da8fe83;hpb=d1b4856ef998199279863ba421301089746da50e;p=roundup.git diff --git a/roundup/version_check.py b/roundup/version_check.py index 8dfc68e..5f6f2be 100644 --- a/roundup/version_check.py +++ b/roundup/version_check.py @@ -16,7 +16,11 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: version_check.py,v 1.2 2001-12-14 21:34:06 richard Exp $ +# $Id: version_check.py,v 1.4 2004-02-11 23:55:08 richard Exp $ + +"""Enforces the minimum Python version that Roundup requires. +""" +__docformat__ = 'restructuredtext' import sys if not hasattr(sys, 'version_info') or sys.version_info[:3] < (2,1,1): @@ -24,12 +28,4 @@ if not hasattr(sys, 'version_info') or sys.version_info[:3] < (2,1,1): print "Roundup requires Python 2.1.1 or newer." sys.exit(0) -# -# $Log: not supported by cvs2svn $ -# Revision 1.1 2001/12/13 00:20:01 richard -# . Centralised the python version check code, bumped version to 2.1.1 (really -# needs to be 2.1.2, but that isn't released yet :) -# -# -# # vim: set filetype=python ts=4 sw=4 et si