blob: 6dffa2df1e1114ae0f342601c6e5150ba50f0b5e [file] [log] [blame]
Jack Jansen0db61d11998-02-25 15:41:24 +00001"""This file (which is sourced, not imported) checks the version of the
2"versioncheck" package. It is also an example of how to format your own
3_checkversion.py file"""
4
5import pyversioncheck
6
7_PACKAGE="MacPython"
Jack Jansend0ddb661998-04-27 15:14:36 +00008_VERSION="1.5.1"
Jack Jansen0db61d11998-02-25 15:41:24 +00009_URL="http://www.cwi.nl/~jack/macpythonversion.txt"
10
11try:
12 _myverbose=VERBOSE
13except NameError:
14 _myverbose=1
15
16pyversioncheck.versioncheck(_PACKAGE, _URL, _VERSION, verbose=_myverbose)