1997-12-23 14:43:55 -04:00
|
|
|
"""This file (which is sourced, not imported) checks the version of the
|
|
|
|
"versioncheck" package. It is also an example of how to format your own
|
|
|
|
_checkversion.py file"""
|
|
|
|
|
|
|
|
import pyversioncheck
|
|
|
|
|
|
|
|
_PACKAGE="versioncheck"
|
|
|
|
_VERSION="1.0"
|
|
|
|
_URL="http://www.cwi.nl/~jack/versioncheck/curversion.txt"
|
|
|
|
|
|
|
|
try:
|
2003-10-24 17:09:23 -03:00
|
|
|
_myverbose=VERBOSE
|
1997-12-23 14:43:55 -04:00
|
|
|
except NameError:
|
2003-10-24 17:09:23 -03:00
|
|
|
_myverbose=1
|
|
|
|
|
1997-12-23 14:43:55 -04:00
|
|
|
pyversioncheck.versioncheck(_PACKAGE, _URL, _VERSION, verbose=_myverbose)
|